//Bartosz Wojciechowski simple jQuery scripts
//www.owlgraphic.com

//MENU SLIDE
jQuery(document).ready(function(){

    jQuery("#sidebar li ul a").hover(function(){
    	jQuery(this).stop().animate({paddingLeft: "10px"}, 200);
    }, function() {
    	jQuery(this).stop().animate({paddingLeft: 0	}, 200);
    });


    
//HOME BUTTON SLIDE

	
    jQuery(".home_button a").hover(function(){
    	jQuery(".home_icon").stop().animate({ top : "-200px", left : "-253px"}, 150);
    }, function() {
    	jQuery(".home_icon").stop().animate({top : "-185px", left : "-268px"}, 150);
    });
    
//OWL EYES

    jQuery("#container a").hover(function(){
    	jQuery(".eyes").stop().animate({ top : "-421px", left : "-403px"}, 150);
    }, function() {
    	jQuery(".eyes").stop().animate({top : "-415px", left : "-397px"}, 150);
    });
    
    //OWL EYES INDEX
    
	   
        jQuery("#container a").hover(function(){
        	jQuery(".eyes_index").stop().animate({ top : "-125px", left : "-205px"}, 150);
        }, function() {
        	jQuery(".eyes_index").stop().animate({top : "-132px", left : "-208px"}, 150);
        });
        

});

