/**
 * Card List jQuery
**/
$(document).ready(function() {
	$('.jqmWindow').jqm({ trigger: false, closeClass: 'jqmClose' });
	
	$('.quickview_trigger').click(function() {
		var modal = $(this).attr('rel');
		
		$('#' + modal).jqmShow();
		
		return false;
	});
});