$(document).ready(function() {
	$('#contact').hover(
		function(){
			$('#sprite').stop(1,1).animate({'top':'-180px','right':'250px'},150);
		},function(){
			$('#sprite').stop(1,1).animate({'top':'-190px','right':'230px'},150);
		}
	);
	
	$('#gallery').bxSlider({
		pager: false,
		nextText:'',
		prevText:'',
		auto:true,
		displaySlideQty:7,
		moveSlideQty:1,
		randomStart: true,
		autoHover: true
	});
	
	$('#flash_infos').bxSlider({
		pager: false,
		controls: false,
		auto:true,
		displaySlideQty:1,
		moveSlideQty:1,
		randomStart: true,
		autoHover: true				   
	});
	
	$('#gallery a').hover(
		function(){
			$(this).find('img').stop(1,1).fadeTo(150,'0');
		},function(){
			$(this).find('img').stop(1,1).fadeTo(0,'1');
		}
	);
	$(".fancybox").fancybox();
});
