$( document ).ready( function() {	
	$("#footer_created_by").hover(function() {
		$('#footer_created_image_dynamic').stop(true);
		$('#footer_created_image_dynamic').animate({
			opacity:1
		},1000);
	},function(){
		$('#footer_created_image_dynamic').animate({
			opacity:0
		},1000);
	});
	
	$(function(){
		$(".contentpaneopen a").lightBox();
	});	
	
	$("#page_center_left li").mouseover(function() {
		$(this).addClass('menu_on');
	}).mouseout(function() {
		$(this).removeClass('menu_on');
	});
	
	$(".jg_catelem_photo").each(function(){
		var tt = "/components/com_joomgallery/img_originals/";
		$kids = $(this).children();
		
		var text = $($kids).attr('src');
		var oo = text.lastIndexOf("img_thumbnails");
		var yy = text.substr(oo + 15, text.length);
	
		$(this).attr("href",tt + yy);
	});
	
	var dd = window.location.toString();

	if ( dd.lastIndexOf("galeria") != -1 ) {
		$("#title_page").html("Galeria");
	} 
	
	$(function(){
		$(".jg_catelem_photo").lightBox();
		$(".formula a").lightBox();
	});
		
});