$(document).ready(function(){
	_typeface_js.initialize()
	
	$("a").click(function(){
		$(this).blur();
	});
	
	$("#top-nav-cont ul li").mouseover(function(){
		$(this).stop().animate({height:'180px'},{queue:false, duration:1200, easing: 'easeOutBounce'})
	});
	$("#top-nav-cont ul li").mouseout(function(){
		$(this).stop().animate({height:'52px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	if (!jQuery.browser.msie) {
	  	$("#top-nav-cont ul li").blend({speed : 1000});
		$(".menu-item").blend({speed : 1000});
	}
});
