// JavaScript Document

$(function(){	
	/********************************
	// BEGIN why buy now
	********************************/
	
		$('#report1').dialog({
			autoOpen: false,
			modal: true,
			width: 600,
			buttons: {
				"Close": function() { 
					$(this).dialog("close"); 
				}
			}
		});
				
		$('#report2').dialog({
			autoOpen: false,
			modal: true,
			width: 600,
			buttons: {
				"Close": function() { 
					$(this).dialog("close"); 
				}
			}
		});
				
		$('#report3').dialog({
			autoOpen: false,
			modal: true,
			width: 600,
			buttons: {
				"Close": function() { 
					$(this).dialog("close"); 
				}
			}
		});	
	
		// Dialog Link
		$('#report_link1').click(function(){
			$('#report1').dialog('open');
			return false;
		});
				
		// Dialog Link
		$('#report_link2').click(function(){
			$('#report1').dialog('open');
			return false;
		});
				
		// Dialog Link
		$('#report_link3').click(function(){
			$('#report1').dialog('open');
			return false;
		});
		
	
	/********************************
	// END why buy now
	********************************/
	
	/********************************
	// BEGIN login
	********************************/
	
	
		// Dialog			
		$('#dialog_forget_password').dialog({
			autoOpen: false,
			modal: true,
			width: 600,
			buttons: {
				"Close": function() { 
					$(this).dialog("close"); 
				}
			}
		});
		
		$('#dialog_forget_password_link').click(function(){
			$('#dialog_forget_password').dialog('open');
			return false;
		});
		
	/********************************
	// END login
	********************************/
	
});