//Scrollto
$(document).ready(function() {
	$('a.scrollto').click(function(){
	$.scrollTo( 0, 500);
	return false;
	});
});

//Superfish Drop Down Menu
$(document).ready(function() { 
        $('ul.sf-menu').superfish({ 
            delay: 100,
            animation: {opacity:'show',height:'show'},
			speed: 'fast',
            autoArrows:  true,
            dropShadows: true
        }); 
    }); 

//FancyBox
$(document).ready(function() {
	/* This is basic - uses default settings */
	$("a.zoom").fancybox();	
	});
