$(function(){
	
	$('.lightbox').lightbox();
	
	jQuery(".lightbox").click(function(ev) {
		jQuery.lightbox([
			"tl_files/pretafeter/content/img/lightbox/inside_room.jpg",
			"tl_files/pretafeter/content/img/lightbox/inside_flowers.jpg",
			"tl_files/pretafeter/content/img/lightbox/bottles.jpg",
			"tl_files/pretafeter/content/img/lightbox/outside_evening.jpg",
			"tl_files/pretafeter/content/img/lightbox/food.jpg",
			"tl_files/pretafeter/content/img/lightbox/shoes.jpg",
			"tl_files/pretafeter/content/img/lightbox/reflection.jpg",
			"tl_files/pretafeter/content/img/lightbox/violin.jpg",
			"tl_files/pretafeter/content/img/lightbox/yes.jpg",
			"tl_files/pretafeter/content/img/lightbox/flowered_table.jpg",
			"tl_files/pretafeter/content/img/lightbox/inside_lounge.jpg",
			"tl_files/pretafeter/content/img/lightbox/chapel.jpg",
			"tl_files/pretafeter/content/img/lightbox/bathroom.jpg",
			"tl_files/pretafeter/content/img/lightbox/bbq_tables.jpg",
			"tl_files/pretafeter/content/img/lightbox/cake.jpg",
			"tl_files/pretafeter/content/img/lightbox/desserts.jpg",
			"tl_files/pretafeter/content/img/lightbox/door.jpg",
			"tl_files/pretafeter/content/img/lightbox/dressings.jpg",
			"tl_files/pretafeter/content/img/lightbox/flowered_table_2.jpg",
			"tl_files/pretafeter/content/img/lightbox/flowers.jpg",
			"tl_files/pretafeter/content/img/lightbox/garden_view.jpg",
			"tl_files/pretafeter/content/img/lightbox/outside_bridge.jpg",
			"tl_files/pretafeter/content/img/lightbox/outside_chairs.jpg",
			"tl_files/pretafeter/content/img/lightbox/outside_garden.jpg",
			"tl_files/pretafeter/content/img/lightbox/outside_tree.jpg"]);
		ev.preventDefault();
	});
	
	$("#right ul.gallery li").stop().find("span.title").hide();
	
	$("#right ul.gallery li").hover(function() { //On hover...
	
		var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'

		//Set a background image(thumbOver) on the <a> tag - Set position to bottom
		$(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
	
		$(this).find("span").stop().fadeTo(0, 0 , function() {
			$(this).hide() //Hide the image after fade
		});
		$(this).find("span.title").stop().fadeTo(0, 1);
		
	} , function() { //on hover out...
		//Fade the image to full opacity 
		$(this).find("span").stop().fadeTo('normal', 1).show();
		$(this).find("span.title").stop().fadeTo('slow', 0).hide();
	});	
});
