// $Id$
// Selects the theme element with the id "logo", fades it out,
// then fades it in slowly.
if (Drupal.jsEnabled) {
$(document).ready(function(){
$("#logo").fadeOut("fast").fadeIn("slow");
$("#subtitle1").slideUp("fast");
$("#subtitle2").slideUp("fast");
$("#subtitle3").slideUp("fast");
$("#subtitle4").slideUp("fast");
$("#subtitle5").slideUp("fast");
$("#subtitle6").slideUp("fast");
});
}
/*function first(arg){
	var st_id="subtitle"+arg;
	var t_id="title"+arg;
	var para_id="dbdr"+arg;
	var para_id1="p"+arg;
	//alert(t_id);
	$(document).ready(function(){
	//$("#subtitle1").slideUp("slow");
	//$("#subtitle2").slideUp("slow");
	//$("#subtitle3").slideUp("slow");
	//$("#subtitle4").slideUp("slow");
	//$("#subtitle5").slideUp("slow");
	//$("#subtitle6").slideUp("slow");
	$("#dbdr1").addClass("dotted_border_dis");
	$("#dbdr2").addClass("dotted_border_dis");
	$("#dbdr3").addClass("dotted_border_dis");
	$("#dbdr4").addClass("dotted_border_dis");
	$("#dbdr5").addClass("dotted_border_dis");
	$("#dbdr6").addClass("dotted_border_dis");
	
	$("#p1").addClass("page_arrew_dis");
	$("#p2").addClass("page_arrew_dis");
	$("#p3").addClass("page_arrew_dis");
	$("#p4").addClass("page_arrew_dis");
	$("#p5").addClass("page_arrew_dis");
	$("#p6").addClass("page_arrew_dis");
	
	
	$("#title1").addClass("title_grey");
	$("#title2").addClass("title_grey");
	$("#title3").addClass("title_grey");
	$("#title4").addClass("title_grey");
	$("#title5").addClass("title_grey");
	$("#title6").addClass("title_grey");
	$("#"+t_id).removeClass("title_grey").addClass("title");
	$("#"+para_id1).removeClass("page_arrew_dis").addClass("page_arrew");
	$("#"+para_id).removeClass("dotted_border_dis").addClass("dotted_border");
	$("#"+st_id).slideDown("slow");
	});
	/*document.getElementById("subtitle2").style.display="none";
	alert("here");*/
	
function first(arg){
	var st_id="subtitle"+arg;
	var t_id="title"+arg;
	var para_id="dbdr"+arg;
	var para_id1="p"+arg;
	
	
	/*$("#dbdr1").addClass("dotted_border_dis");
	$("#dbdr2").addClass("dotted_border_dis");
	$("#dbdr3").addClass("dotted_border_dis");
	$("#dbdr4").addClass("dotted_border_dis");
	$("#dbdr5").addClass("dotted_border_dis");
	$("#dbdr6").addClass("dotted_border_dis");
	
	$("#p1").addClass("page_arrew_dis");
	$("#p2").addClass("page_arrew_dis");
	$("#p3").addClass("page_arrew_dis");
	$("#p4").addClass("page_arrew_dis");
	$("#p5").addClass("page_arrew_dis");
	$("#p6").addClass("page_arrew_dis");*/
	
	
	$("#title1").addClass("title_grey");
	$("#title2").addClass("title_grey");
	$("#title3").addClass("title_grey");
	$("#title4").addClass("title_grey");
	$("#title5").addClass("title_grey");
	$("#title6").addClass("title_grey");
	
	
	
	$("#"+t_id).removeClass("title_grey").addClass("title");
	$("#"+para_id1).removeClass("page_arrew_dis").addClass("page_arrew");
	$("#"+para_id).removeClass("dotted_border_dis").addClass("dotted_border");
	//$("#"+st_id).slideDown("slow");
	if($("#"+st_id).is(":hidden")){
		$("#"+st_id).slideDown("slow");
	}else{
		$("#"+st_id).slideUp("slow");	
	}
}
function display_subscription(){
	if(document.getElementById("subscription").style.display=="inline"){
	document.getElementById("subscription").style.display="none";
	}else{
	document.getElementById("subscription").style.display="inline"
	}
}