$(document).ready(function(){ 
// for png fix         
	$(document).pngFix(); 
	
	$(".footer-menu ul li:last").addClass('last');	
	
	$('#top-menu ul li:last a').addClass('product');
	
	
// for sliding top panel 
//  $("div#top-panel").hide();
	$(".open a").click(function(){
		$("div#top-panel").slideDown("slow");
		$(".open a").hide();
	});	
	
	// Collapse Panel
	$(".close a").click(function(){
		$("div#top-panel").slideUp("slow");	
		$(".open a").show();
});	

	$("#prod-button").click(function(){
	$("div#top-panel").slideToggle("slow");
});
	
	
// sms and finder start
//	$("#sms").hide();
	$("#finder").hide();
	$(".orange .supported-coun").hide();
	$("a.sms,#product-button").click(function(){
		$("#top-panel").attr("class", "orange");
		$("#sms").show();
		$(".orange .supported-coun").hide();
		$("#finder").hide();
	});
	
	$("a.finder,#product-button").click(function(){
		$("#top-panel").attr("class", "blue-bg");
		$(".orange .supported-coun").show();
		$("#finder").show();
		$("#sms").hide();
	});
	
		// putting menu name to the left bar
	if($('#block-block-10').length)
	{
		parent_name=$('#secondarymenu ul li.active-trail a.active').html();
		
		$('#parent-name').html(parent_name);
		
	}
	// Replacing Title.
	$("#site-map  h2.title").html("Sitemap");
	
 }); 
