$(document).ready( 
	function(){ 
	$('#portafolio').innerfade({ 
			speed: 'slow', 
			timeout: 4000, 
			type: 'sequence', 
			containerheight: '100px' 
		}); 
} ); 

	$(function(){
// Dialog Link
		$('#dialog_link').click(function(){
		
			$('#dialog_mapa').dialog('open');
			return false;
		});
		 
		$('#dialog_mapa').dialog({
					autoOpen: false,
					modal: true,
					width: 470,
					height: 490,
					buttons: {
						"Cerrar": function() { 
							$(this).dialog("close"); 
						} 
					}
				});
				
	});
