function showsub(id) {
	if(document.getElementById(id).style.display == 'none') {
		document.getElementById(id).style.display = 'block';
	}
	else {
		document.getElementById(id).style.display = 'none';
	}
}

$(document).ready(function(){

	$("#fotos a").hover(function(){
	
		var largePath = $(this).attr("name");
		
		$("#largeImg").attr({ src: largePath });
		
		return false;
	});
	
});
