$(document).ready(function() {
    
	// Preload all images
	$("#thumbs").preloader();
	$(".slider").preloader();
	
	// Slider Gallery 
	$('#slideshow').cycle({
		pause: 1	
	});		
	
	// Thumb hover effect
	$('#thumbs .thumb ').mouseover(function(){
		$(this).find('.thumb-label').stop().animate({marginTop : 128, opacity : 0.8});
		
	});
	
	$('#thumbs .thumb ').mouseout(function(){
		$(this).find('.thumb-label').stop().animate({marginTop : 154});
	});
	
	//  Fit background image fullscreen on different resolution	   
	
	$('#bg').bgStretcher({
		images: ['bg.jpg'],
		imageWidth: 1600, 
		imageHeight: 1060, 
		slideDirection: 'N',
		slideShow : false,
		sequenceMode: 'normal'
	});
	
	// Fancybox
	$("a.inline").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity':	0.75,
		'overlayColor'	:	'#000'
	});
    
});
