$(function() {

	// initialize the jqm window for product details
	$('#jqmContentModal').jqm({
		overlay: 75
	});

	// make all the learn more links trigger the product details popup
	$('a.learnmore').live('click', function() {
		$('#jqmContentModal').html('');
		$.get('/contentModal.aspx?p='+$(this).attr('contentid'), function(d, s) {
			$('#jqmContentModal').html(d).jqmShow();
		});
		return false;
	});
	
});
