jQuery(function() {
		jQuery(".promoNavigation").children().mousedown(function() { 
		jQuery(".promoNavigation").children().removeClass("selected");
		jQuery(this).addClass("selected"); 
		jQuery(".promoContent").children().removeClass("selected").hide(1);
		jQuery("#promoText"+jQuery(this).attr("value")).addClass("selected").show(1);
		return false;
	});
});

