// JavaScript Document
$(document).ready(function() {
	// Add first-child and last-child classes for ie6+ie7
	$("li:last-child").addClass("last-child");
	$("li:first-child").addClass("first-child");
	$('ul.menu').superfish({ 
            delay:       1000,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 

//Gallery //
	$('.main-image').cycle({ 
		fx:     'fade', 
		speed:   1500, 
		random: 1,
		timeout: 5000, 
		next:   '.main-image', 
		pause:   1 
	 });
	 $('#inner').innerfade({
		speed: 'medium',
		timeout: 5500,
		type: 'sequence',
		containerheight: '136px'
	});
		
		$(".fancy").fancybox({
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.8
			});

 });
 
