jQuery(document).ready(function() {
			// Superfish Menu
			jQuery('ul.sf-menu').superfish({ 
            delay: 200,                            // one second delay on mouseout 
            animation: {opacity:'show',height:'show',width:'show'},  // fade-in and slide-down animation 
			speed: 'normal'
        }); 
			// 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(".widget li:even").addClass("odd");
			jQuery("#top-menu li:first-child").addClass("first-child");
			jQuery("#top-menu li:last-child").addClass("last-child");
			jQuery(".latest-posts li:last-child").addClass("last");
			jQuery(".post:last-child").addClass("last-child");
			jQuery("#sidebar .widget li:last-child").addClass("last-child");
			jQuery("#sidebar .widget img:last-child").addClass("last-child");
			jQuery("#footer-menu li:first-child").addClass("first-child");
			jQuery("#footer-menu li:last-child").addClass("last-child");
}); // Document Ready
