$("document").ready(function() {
	
	$(".language_item").not(":last").append("&nbsp;&#183;&nbsp;");

	$(".table tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
	$(".table tr:even").addClass("alt");
	
	$(".accordion" ).accordion({
			autoHeight: false,
			navigation: false,
			active: false
	});
						 
	$("#cm_get_your_own").css("height", "0px");						 
							 
	$("#sub_colleges").hide();
	$("#sub_summer_camp").hide();
	$("#sub_accommodations").hide();
	$("#sub_visas").hide();
	$("#sub_faq").hide();
	$("#sub_what_we_do").hide();
	
	$("#m_contact").mouseover(function () {
		$("#sub_colleges").hide();
		$("#sub_summer_camp").hide();
		$("#sub_accommodations").hide();
		$("#sub_visas").hide();
		$("#sub_faq").hide();
		$("#sub_what_we_do").hide();
	});
	
	$("#m_forms").mouseover(function () {
		$("#sub_colleges").hide();
		$("#sub_summer_camp").hide();
		$("#sub_accommodations").hide();
		$("#sub_visas").hide();
		$("#sub_faq").hide();
		$("#sub_what_we_do").hide();
	});
	
	$("#m_vocational_programs").mouseover(function () {
		$("#sub_colleges").hide();
		$("#sub_summer_camp").hide();
		$("#sub_accommodations").hide();
		$("#sub_visas").hide();
		$("#sub_faq").hide();
		$("#sub_what_we_do").hide();
	});
	
	$("#m_home").mouseover(function () {
		$("#sub_colleges").hide();
		$("#sub_summer_camp").hide();
		$("#sub_accommodations").hide();
		$("#sub_visas").hide();
		$("#sub_faq").hide();
		$("#sub_what_we_do").hide();
	});
	
	$("#m_colleges").mouseover(function () {
		$("#sub_colleges").show();
		$("#sub_summer_camp").hide();
		$("#sub_accommodations").hide();
		$("#sub_visas").hide();
		$("#sub_faq").hide();
		$("#sub_what_we_do").hide();
	});
	
	$("#m_summer_camp").mouseover(function () {
		$("#sub_colleges").hide();
		$("#sub_summer_camp").show();
		$("#sub_accommodations").hide();
		$("#sub_visas").hide();  
		$("#sub_faq").hide();
		$("#sub_what_we_do").hide();
	});
	
	$("#m_accommodations").mouseover(function () {
		$("#sub_colleges").hide();
		$("#sub_summer_camp").hide();
		$("#sub_accommodations").show();
		$("#sub_visas").hide();
		$("#sub_faq").hide();
		$("#sub_what_we_do").hide();
	});

	$("#m_other_accomodations").mouseover(function () {
		$("#sub_colleges").hide();
		$("#sub_summer_camp").hide();
		$("#sub_accommodations").show();
		$("#sub_visas").hide();
		$("#sub_faq").hide();
		$("#sub_what_we_do").hide();
	});
	
	$("#m_visas").mouseover(function () {
		$("#sub_colleges").hide();
		$("#sub_summer_camp").hide();
		$("#sub_accommodations").hide();
		$("#sub_visas").show();
		$("#sub_faq").hide();
		$("#sub_what_we_do").hide();
	});
	
	$("#m_faq").mouseover(function () {
		$("#sub_colleges").hide();
		$("#sub_summer_camp").hide();
		$("#sub_accommodations").hide();
		$("#sub_visas").hide();
		$("#sub_faq").show();
		$("#sub_what_we_do").hide();
	});
	
	$("#m_what_we_do").mouseover(function () {
		$("#sub_colleges").hide();
		$("#sub_summer_camp").hide();
		$("#sub_accommodations").hide();
		$("#sub_other_programs").hide();
		$("#sub_faq").hide();
		$("#sub_what_we_do").show();
	});
	
	$(".state-list a").mouseover(function () {
		var statename = $(this).attr("id");
		var statename2 = "url(/wp-content/themes/penguin/images/states/" + statename + "-over.png)";
		$("#maphover").css("background-image",statename2);
	}); 
	
}); 

