$(document).ready(function () {	
$("#main_table").height($(document).height());
$("#left_cell").height($(document).height());
$("#right_cell").height($(document).height());
$("#main_cell").height($(document).height());

$("div.main_fotos a").fancybox({
	'transitionIn'	:	'elastic',
	'transitionOut'	:	'elastic',
	'overlayShow': true, 
	'overlayColor': '#000', 
	'overlayOpacity': 0.2, 
});

$("div.gall_small_img a").click(function(event){
		event.preventDefault();
		var alt = $(this).children().attr("alt");
		var iid = $(this).children().attr("src").replace("/img/gal/","").replace("s.",".");
		$("div#img_ttl").html(alt);
		$("a#gal_img_a").attr("href","#"+iid.replace(".jpg",""));
		$("a#gal_zoom").attr("href","/img/gal/"+iid);
		$("img#gal_img").attr("src","/img/gal/"+iid.replace(".","b."));
		$("img#gal_img").attr("alt",alt);
});

$("a#gal_img_a").live("click", function(event){
		event.preventDefault();
		var cid = $(this).attr("href").replace("#","");
		var iid = $("#gal_nextid_"+cid).val();
		var alt = $("#gal_nextalt_"+cid).val();
		
		$("div#img_ttl").html(alt);
		$("a#gal_img_a").attr("href","#"+iid.replace(".jpg",""));
		$("a#gal_zoom").attr("href","/img/gal/"+iid);
		$("img#gal_img").attr("src","/img/gal/"+iid.replace(".","b."));
		$("img#gal_img").attr("alt",alt);
});

$("table.list tr:nth-child(even)").addClass("striped");

});
