jQuery(function( $ ){

$("a.other_sites").click(function(){
	$("div.global_promotions_panel").slideUp("slow");
	$("div.other_sites_panel").slideToggle("slow");
	$(this).toggleClass("active");
	return false;
});

$("a.global_promotions").click(function(){
	$("div.other_sites_panel").slideUp("slow");
	$("div.global_promotions_panel").slideToggle("slow");
	$(this).toggleClass("active2");
	return false;
});

});
