$(document).ready(function(){

	$('a.linkMore').click(function() {
        if($('img', this).attr("src") == "/css/img/bullet_toggle_minus.gif") {
             $('img', this).attr("src","/css/img/bullet_toggle_plus.gif");
        }else {$('img', this).attr("src","/css/img/bullet_toggle_minus.gif");
        }                                                             
		$("#div_" + $(this).attr("id")).toggle(); return false;
		
	});


//CAMBIA LA IMAGEN DEL CUADRO CON EL "NAVEGADOR DE IMAGENES" (CAROUSEL)
	$(".imgChanger").click(function() {
		$('#picNormal').attr('src', $(this).attr('href'));
		img = $(this).attr('href');
		upImg = img.replace('_small.jpg','.jpg');
		title = $(this).attr('title');
		$('#picNormalLink').attr('title', title);
		$('#picNormalLink').attr('href', upImg); return false;
	
	});


});
