//Bartosz Wojciechowski simple jQuery scripts
//www.owlgraphic.com

//MENU SLIDE
/*$(document).ready(function(){

    $("#header_right ul li a").hover(function(){
    	$(this).stop().animate({paddingLeft: "10px"}, 200);
    }, function() {
    	$(this).stop().animate({paddingLeft: 0	}, 200);
});
*/

$(document).ready(function(){
var navDuration = 150; //time in miliseconds
      var navJumpHeight = "10px";

      $('#navi li .inactive').hover(function() {
          $(this).animate({ top : "+="+navJumpHeight }, navDuration);            
      }, function() {
          $(this).animate({ top : "-10px" }, navDuration);
      });
});

$(document).ready(function(){	
	$("#slider").easySlider({
		auto: true,
		continuous: true		
	});
})

