$(document).ready(
	function() {
    $(".supportPagesTOS").click(
    	function() {
    		$("body").prepend('<div id="supportPagesTOS_D"></div>');
			$("#supportPagesTOS_D").load(baseURL+"landing/terms_of_service/");
			$("#supportPagesTOS_D").dialog(
				{
    			//$("#dialog").dialog({
    			bgiframe: true,
    			resizable: false,
    			height:400,
    			width:800,
    			modal: true,
    			title: 'Terms of Service',
    			overlay: {
    				backgroundColor: '#000',
    				opacity: 0.85
    			},
				buttons: {
					'Close': function() {
						$(this).dialog('close');
					}
				}
				}
			);
			return false;
		});
    $(".supportPagesPP").click(
        	function() { 
        		$("body").prepend('<div id="supportPagesPP_D"></div>');
    			$("#supportPagesPP_D").load(baseURL+"landing/privacy_policy/");
    			$("#supportPagesPP_D").dialog(
    				{
        			//$("#dialog").dialog({
        			bgiframe: true,
        			resizable: false,
        			height:400,
        			width:800,
        			modal: true,
        			title: 'Privacy Policy',
        			overlay: {
        				backgroundColor: '#000',
        				opacity: 0.85
        			},
    				buttons: {
    					'Close': function() {
    						$(this).dialog('close');
    					}
    				}}
    			);
    			return false;
    		});
    $(".supportPagesOG").click(
        	function() { 
        		$("body").prepend('<div id="supportPagesOG_D"></div>');
    			$("#supportPagesOG_D").load(baseURL+"landing/our_guarantee/");
    			$("#supportPagesOG_D").dialog(
    				{
        			//$("#dialog").dialog({
        			bgiframe: true,
        			resizable: false,
        			height:400,
        			width:800,
        			modal: true,
        			title: 'Our Guarantee',
        			overlay: {
        				backgroundColor: '#000',
        				opacity: 0.85
        			},
    				buttons: {
    					'Close': function() {
    						$(this).dialog('close');
    					}
    				}}
    			);
    			return false;
    		});
	}
);