$(document).ready(function(){
//On the what we do page this manages the content under media buying
	$('#whatwedo_container ul .media_boxes').hide();
	$('#wwdbox_home').show();
	
	//Click Action


	$('#mb_links li').click(function(){
			id = $(this).attr('alt');
			$('#whatwedo_container ul .media_boxes').hide();
			$('#mb_links li').css({'font-weight' : 'normal', 'color' : 'rgb(247,143,30)'});
			
			$(this).css({'font-weight' : 'bolder', 'color' : 'rgb(0,0,0)'
});
			box = '#wwdbox_' + id;
			$(box).fadeIn('slow');
			return false;
	});
	
	

});
