$(document).ready(function() {
	
	$('.x').one("focus", function() {
		$(this).val("");
	});
	
	$(".rollover").hover(function() {
		$(this).css({"cursor":"pointer"});
        var currentImg = $(this).attr("src");
        $(this).attr("src", $(this).attr("hover"));
        $(this).attr("hover", currentImg);
    }, function() {
        var currentImg = $(this).attr("src");
        $(this).attr("src", $(this).attr("hover"));
        $(this).attr("hover", currentImg);
    });
	
	
	$("#ver_fotos").click(function () {
		$("#mas_fotos").slideDown("fast");
		$("#ver_fotos").slideUp("ver menos");
	});
	
	$("#ver_videos").click(function () {
		$("#mas_videos").slideDown("fast");
		$("#ver_videos").slideUp("ver menos");
		
	});
	
	
});


