/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 254 2010-07-23 05:14:44Z emartin24 $
 */

jQuery(function ($) {
	// Load dialog on page load

	// Load dialog on click
	$('.hh').click(function (e) {
								   
		var url = $(this).attr('href');	
		
		$('#modal').load(url + ' #main');

		
//		var contenido = $('<div></div>');
//		
//		$.ajax({
//			type : 'GET',
//			url : url,
//			dataType : 'html',
//			success : function(data){
//				contenido.html(data); 
//				$('#modal').html(contenido.find('#main'));
//			}
//		});
								   
								   
		$('#modal').modal();
								   
		e.preventDefault();

	});
	
	
	



});
