//Scrollto
$(document).ready(function()
{
$('a.scrollto').click(function(){
$.scrollTo( 0, 500);
return false;
});
});

//Scrollto Local
$(document).ready(function()
{
$.localScroll({
		queue:true,
		duration:1000
});
});

//Superfish Drop Down Menu
    $(document).ready(function() { 
        $('ul.sf-menu').superfish({ 
            delay: 100,
            animation: {opacity:'show',height:'show'},
			speed: 'normal',
            autoArrows:  true,
            dropShadows: true
        }); 
}); 
