jQuery(document).ready(function() {
			jQuery("#gallery a, #products a.lightbox").preloader();
			// Superfish Menu
			jQuery('ul.sf-menu').superfish();
			// Slider
			jQuery('#nivo-slider').nivoSlider({
			effect:'sliceDown', //Specify sets like: 'fold,fade,sliceDown'
			animSpeed:500, //Slide transition speed
			pauseTime:4000,
			directionNav:true, //Next & Prev
			directionNavHide:true, //Only show on hover
			controlNav:false, //1,2,3...
			pauseOnHover:true, //Stop animation while hovering
			manualAdvance:false //Force manual transitions
    	}); 
			// Link Nudding
			jQuery(".sidebar .widget li a").hover(function() {
			jQuery(this).stop().animate({paddingLeft : "10px"},200);
			},function() {
			jQuery(this).stop().animate({paddingLeft : "0"},200);
		});
			// Scrolling Effect
			jQuery('.scroll-top a').bind('click',function(event){
            var jQueryanchor = jQuery(this);  
            jQuery('html, body').stop().animate({
            	scrollTop: jQuery(jQueryanchor.attr('href')).offset().top
            }, 500);
            event.preventDefault();
        });
			// Last Childs			
			jQuery("#footer-menu li:first-child, .post:first-child").addClass("first-child");
			
			jQuery(".sidebar .widget li.last-child, #footer-menu li.last-child").addClass("last-child");
		
}); // Document Ready
