$(function() {

	$("#images").crossSlide({
		sleep: 10,
	  	fade: 1
	},[
		{ src: 'images/logo1.jpg' },
		{ src: 'images/layingdown.jpg' },
		{ src: 'images/logo2.jpg' }
	  ]);

	

	if($(".more").length > 0) {
		$(".more[href^=#]").each( function(i) {
			document.getElementById(this.hash.substring(1)).parentNode.style.display = "none";
			
			$(this).fancybox({
				width: 690,
				height: 400,
				autoDimensions: false,
				overlayOpacity: 0
			});	
		});		
	}
	
	if($(".price").length > 0) {
		$(".price tr").hover( function() {
			$(this).css("backgroundColor", "#eee");
		}, function() {
			$(this).css("backgroundColor", "#fff");
		});
	}
});

