$(document).ready(function(){
	
	var path = location.pathname.substring(0, location.pathname.lastIndexOf('/') + 1);

	$("#content #news-right .news-box .news").css({"background":"url('/img/news_arrows_up.jpg') no-repeat 34px 1px", "width":"45px"}).next("p").slideUp();
	$("#content #news-right .news-box .special").css({"background":"url('/img/news_arrows_up.jpg') no-repeat 83px 1px", "width":"95px"}).next("p").slideUp();
	$("#content #news-right .news-box a[href!='" + path + "'].featured").css({"background":"url('/img/news_arrows_up.jpg') no-repeat 180px 1px", "width":"185px"}).next("p").slideUp();
	
// 	$("#content #news-right .news-box .featured").next("p").text(path);
	
	$("#content #news-right .news-box .news").toggle(
		function(){
			$(this).next("p").slideDown();
			$(this).css({"background":"url('/img/news_arrows_down.jpg') no-repeat 34px 5px", "width":"45px"})
		},
		function(){
			$(this).next("p").slideUp();
			$(this).css({"background":"url('/img/news_arrows_up.jpg') no-repeat 34px 1px", "width":"45px"})
		}
	)
	
	$("#content #news-right .news-box .special").toggle(
		function(){
			$(this).next("p").slideDown();
			$(this).css({"background":"url('/img/news_arrows_down.jpg') no-repeat 83px 5px", "width":"95px"})
		},
		function(){
			$(this).next("p").slideUp();
			$(this).css({"background":"url('/img/news_arrows_up.jpg') no-repeat 83px 1px", "width":"95px"}).next("p").hide();
		}
	)
	
	$("#content #news-right .news-box .featured").toggle(
		function(){
			$(this).css({"background":"url('/img/news_arrows_down.jpg') no-repeat 180px 5px", "width":"185px"});
			$(this).next("p").slideDown();
		},
		function(){
			$(this).css({"background":"url('/img/news_arrows_up.jpg') no-repeat 180px 1px", "width":"185px"});
			$(this).next("p").slideUp();
		}
	)
	
	// clear up P's
	
	$("#content #news-right .news-box p").css({"margin-top":"5px"});
	
// 	drop the current page's menu
	
// 	fn = document.location.href.split("/")[4];
// 	
// 	if(fn == ""){
// 		fn = "about_scemes.html";
// 	}
// 	
// 	fn = fn.split(".")[0];
// 	
// 	var d0 = ["about_scemes","about_scemes2","about_scemes3","sustainability","job_opportunity","meet_the_team","contact_us"];
// 	var d1 = ["bus_products1","bus_products2","bus_products3","bus_advertise","scemes_for_bus2"];
// 	var d2 = ["sch_products1","sch_products2","sch_products3","sch_products4","sch_register","scemes4schools"];
// 	var d3 = ["corporate1","corporate2","corporate3"];
// 	var d4 = ["testimonials1","testimonials2","testimonials3"];
// 	
// 	
// 	if($.inArray(fn,d0) != -1){
// 		$("#content #news-right .news-box .featured:eq(0)").css({"background":"url('/img/news_arrows_down.jpg') no-repeat 176px 5px", "width":"185px"}).unbind("click").click(function(){ return false; }).next("p").show();
// 	};
// 	if($.inArray(fn,d1) != -1){
// 		$("#content #news-right .news-box .featured:eq(1)").css({"background":"url('/img/news_arrows_down.jpg') no-repeat 176px 5px", "width":"185px"}).unbind("click").click(function(){ return false; }).next("p").show();
// 	};
// 	if($.inArray(fn,d2) != -1){
// 		$("#content #news-right .news-box .featured:eq(2)").css({"background":"url('/img/news_arrows_down.jpg') no-repeat 176px 5px", "width":"185px"}).unbind("click").click(function(){ return false; }).next("p").show();
// 	};
// 	if($.inArray(fn,d3) != -1){
// 		$("#content #news-right .news-box .featured:eq(3)").css({"background":"url('/img/news_arrows_down.jpg') no-repeat 176px 5px", "width":"185px"}).unbind("click").click(function(){ return false; }).next("p").show();
// 	};
// 	if($.inArray(fn,d4) != -1){
// 		$("#content #news-right .news-box .featured:eq(4)").css({"background":"url('/img/news_arrows_down.jpg') no-repeat 176px 5px", "width":"185px"}).unbind("click").click(function(){ return false; }).next("p").show();
// 	};
// 	
// 	
// 	console.log(fn);
})