/**
 * 
 */

var Sample_Product =  Sample_Product || {};

Sample_Product.init = function(url){
	if ( jQuery('#sp1').length ) {
	    jQuery('#sp1').jqm({
	    				ajax: url,
						trigger: 'a.sampleJump',
						overlay: 30,
						onLoad : Sample_Product.goToLastStep,
						onHide : Sample_Product.hideModal
					});
		jQuery('#sp1').jqmAddClose('a#closejqWindow');
	}

}

Sample_Product.goToLastStep = function(){
	var middleVert = Math.round((jQuery(window).height()-450)/2);
	jQuery('#sp1').css('top',middleVert+'px');
}

Sample_Product.hideModal = function() {
	jQuery('.jqmOverlay').hide();
	jQuery('#sp1').hide();
	return true;
}


var Free_Product =  Free_Product || {};

Free_Product.init = function(url){
	if ( jQuery('#sp2').length ) {
	    jQuery('#sp2').jqm({
	    				ajax: url,
/*						trigger: 'a.sampleJump', */
						overlay: 30,
						onLoad : Free_Product.goToLastStep,
						onHide : Free_Product.hideModal
					});
		jQuery('#sp2').jqmAddClose('a#closejqWindow');
		var middleVert = Math.round((jQuery(window).height()-450)/2);
		jQuery('#sp2').css('top',middleVert+'px');
		jQuery('#sp2').jqmShow();
	}

}

Free_Product.goToLastStep = function(){
}

Free_Product.hideModal = function() {
	jQuery('.jqmOverlay').hide();
	jQuery('#sp2').hide();
	return true;
}

