$(function(){	
	$('#offer_details_popup').dialog({
		bgiframe: false,
		autoOpen: false,
		width:738,
		height:485,
		modal: true,
		resizable: false,
		title: 'Subscribe today and Receive your first month on us!'
	});
	
	$('.offer_details_popup_open').each(function(){
		$(this).bind('click', function(){
			$('#offer_details_popup').dialog('open');
			return false;
		});
	});
	
	$('#offer_details_popup .close').each(function(){
		$(this).bind('click', function(){
			$('#offer_details_popup').dialog('close');
			return false;
		});
	});
               
});
