jQuery(window).load(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',
			autoArrows:  false,
			dropShadows:   false
        });
			// Slider
			jQuery('#slider').nivoSlider({
			effect:'sliceDown', //Specify sets like: 'fold,fade,sliceDown'
			slices:15,
			animSpeed:500, //Slide transition speed
			pauseTime:3000,
			startSlide:0, //Set starting Slide (0 index)
			directionNav:true, //Next & Prev
			directionNavHide:true, //Only show on hover
			controlNav:true, //1,2,3...
			controlNavThumbs:false, //Use thumbnails for Control Nav
			controlNavThumbsFromRel:false, //Use image rel for thumbs
			controlNavThumbsSearch: '.jpg', //Replace this with...
			controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src
			keyboardNav:true, //Use left & right arrows
			pauseOnHover:true, //Stop animation while hovering
			manualAdvance:true, //Force manual transitions
			captionOpacity:0.8, //Universal caption opacity
    	});
			// Scrolling Effect
			jQuery('.scroll-top a').bind('click',function(event){
                    var $anchor = $(this);
                    
                    $('html, body').stop().animate({
                        scrollTop: $($anchor.attr('href')).offset().top
                    }, 1500,'easeInOutExpo');
                    /*
                    if you don't want to use the easing effects:
                    $('html, body').stop().animate({
                        scrollTop: $($anchor.attr('href')).offset().top
                    }, 1000);
                    */
                    event.preventDefault();
        });
jQuery(".widget:even").addClass("even");
jQuery(".widget:odd").addClass("odd");
});
jQuery('.rounded').corner();
jQuery(".widget:last-child").addClass("lastchild");
