$(document).ready(function() {
	$("#returning_login").mouseover(function(){
			$(".arrow").css("background-image","url(images/div_bottom.jpg)");
			$(".info_div").stop(true, true).hide();	
			$("#returning_login_info").show();	
			$("#div_1").css("background-image","url(images/div_bottom_arrow.jpg)");
	});
	$("#continuing_education").mouseover(function(){
			$(".arrow").css("background-image","url(images/div_bottom.jpg)");
			$(".info_div").stop(true, true).hide();
			$("#continuing_education_info").stop(true, true).show();	
			$("#div_2").css("background-image","url(images/div_bottom_arrow.jpg)");
	});
	
	$("#peace_officer").mouseover(function(){
			$(".arrow").css("background-image","url(images/div_bottom.jpg)");
			$(".info_div").stop(true, true).hide();
			$("#peace_officer_info").stop(true, true).show();	
			$("#div_3").css("background-image","url(images/div_bottom_arrow.jpg)");
	});
	
	$("#jail_officer").mouseover(function(){
			$(".arrow").css("background-image","url(images/div_bottom.jpg)");
			$(".info_div").stop(true, true).hide();
			$("#jail_officer_info").stop(true, true).show();
			$("#div_4").css("background-image","url(images/div_bottom_arrow.jpg)");
	});	
});

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function log_out(){
	createCookie("MSA_BJM_USER","",-1);
	//document.cookie = "MSA_BJM_USER=no";
	window.location="index.php";
}

function open_colorbox(div){
	//alert(div);
	var cid = div.split("sch_div_");
	cid = cid[1];
	$.fn.colorbox({href:'schedule.php?id='+cid+'', open:true, height:400, width:610, iframe:true});
}

function register_for_class(schid){
	$.fn.colorbox.close();
	window.location = "../academy/register.php?id="+schid+"";
}
