// JavaScript Document
	


function ocultarphotoframe() {

	$('#photoframe').fadeOut();

	}
	
function flotarphotoframe() {
	
		new_y = $('#photoframe').offset().top;
		
		//window.alert(new_y);
		
		if (new_y<200) {
		 
		 new_y=200;
			
		}
		
		$('#photoframe').css('top',new_y);

}

