$(document).ready(function()
{
	$("a.galleryimages").fancybox();

	$("#slideshow").jCarouselLite({
		auto: 3000,
		speed: 500,
		visible: 1
	});
	
	$(".openModal").click(function()
	{
		var id = $(this).attr("rel");
		$("#" + id).show();
	});

	$(".closeModal").click(function()
	{
		var id = $(this).attr("rel");
		$("#" + id).hide();
	});

	$("#gallery_albums td").hover(
	function () {
                var rel = $(this).attr("rel");
		$('td[rel*="' + rel + '"]').addClass("hover");
	}, 
	function () {
                var rel = $(this).attr("rel");
		$('td[rel*="' + rel + '"]').removeClass("hover");
	}
	);
});

