// execute your scripts when the DOM is ready. this is a good habit 
$(function() { 
 
    // assign a click event to the exposed element, using normal jQuery coding 
    $("a#privacy_open").click(function() { 
 		$("#privacy").show();
        // perform exposing for the clicked element 
		//$("#privacy").expose({
//			color:'#212629',
//			opacity:0.75,
//			closeOnClick:false,
//			
//		});
 		$("#privacy").expose({api: true}).load();		
    }); 
	
	$("a#privacy_close").click(function(){
    	$("#privacy").hide();
		$("#privacy").expose({api: true}).close(); 
	});
});
