// JavaScript Custom

$(document).ready(function() {			
	
	$('#featured-item').s3Slider({
		timeOut: 6000					<!-- To speed up the slider, lower the number. -->
	});									<!-- To slow down the slider, raise the number. -->

	$("ul#nav").superfish({ 
    	delay: 1000,                            // one second delay on mouseout 
        animation: {opacity:'show',height:'show'},  // fade-in and slide-down animation 
        speed: 'slow',                          // faster animation speed 
        autoArrows: false,                           // disable generation of arrow mark-up 
        dropShadows: false                            // disable drop shadows 
    });		<!-- Superfish Plugin Dropdowns IE6bugfix -->

	$('a#top').click(function(){
		$.scrollTo( 0, 3000, {easing:'easeOutExpo'});
		return false;
	});

	$('#featured-item a.scroller').click(function(){
		$.scrollTo( '#dolci', 3000, {easing:'easeOutExpo'});
		return false;
	});


	$("a.iframe").fancybox({
		'width'			: '75%',
		'height'		: '75%',
		'overlayColor'	: '#000',
		'centerOnScroll': 'true',
		'autoScale'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'type'			: 'iframe',
		'titlePosition'	: 'over'
	});



});
