/**
 main page load
 adds the jquery corners to the page design
*/
$(document).ready(function () {		
	$("#white_top_bar").corner("top 5px");
	$("#content_container").corner("bottom 5px");
});

//var ROOTURL = "http://resist.dev.pcr-inc.com";
var ROOTURL = "http://resist-diabetes.com";

/**
 User logout
 
 sends logout action ajax call
 to login ajax script
*/
function logout() {
	$.ajax({
		type: "POST",
		url: ROOTURL+"/login/ajax/login.php",
		dataType: "html",
		data: ({
	    	action:"logout"
	    }),		
		success: function(){
			window.location.href = ROOTURL+"/index.php?page=logout";
		}
 	});	
}

// function to show or hide a div by its id attribute
function showHide(id) {
	if ($('#'+id).is(":hidden")) {
		$('#'+id).show();
	} else {
		$('#'+id).hide();
	}	
}

