$("document").ready(function(){
	
	$("a[rel^='prettyPhoto']").prettyPhoto({showTitle: false});
	
	$(".custom-img").css("cursor","pointer");
	$(".custom-img").click(function(){
		
		var path = $(this).attr("src");
		path = path.substring(7);
		var tit = $(this).attr("title");
		$.prettyPhoto.open("custom/large/"+path,tit);		
		
	});
});


function setLang(lang)
{
	$("#lformL").val(lang);
	$("#lform").submit();
}


