jQuery(function() {
    // bind click to links with class modalwin
	jQuery('a.modalwin').click(function() {
	    var url = jQuery(this).attr('href');									
	    jQuery("div.modal-dialog").dialog({
			modal: true,
			width: 600,
			height: 400,
			overlay: { backgroundColor: "#000", opacity: 0.5 },
			open: function() { jQuery(this).load(url + "?format=html"); },
			close: function(ev, ui) { }

		});
		return false;
	});

    // bind click to ul list
	jQuery('ul.products li').click(function() {
	    var url = jQuery(this).attr('rel');									
	    jQuery("div.modal-dialog").dialog({
			modal: true,
			width: 600,
			height: 400,
			overlay: { backgroundColor: "#000", opacity: 0.5 },
			open: function() { jQuery(this).load(url + "?format=html"); },
			close: function(ev, ui) {  }

		});
    });
});

