jQuery().ready(function(){

	$(".m").hover(function(){	
		$('.sm').hide('fast');
		$(".m").removeClass('hover');
		
		$('.'+$(this).attr('id')).show('fast');
		$(this).addClass('hover');
	});
		
	$(".sm").mouseleave(function(){
		$('.sm').hide('fast');
		$(".m").removeClass('hover');
	});	
	
	$("a.blank").click(function(e){
		window.open($(this).attr("href"));
		return false;
	});
	
});	

