jQuery(function(){
	jQuery('ul li:first-child').addClass("first");
	jQuery('ul li:last-child, dl dd:last-child').addClass("last");
	jQuery('.menu li:has(ul) a').addClass("parent");
	var config = {   
		sensitivity: 3, 
		interval: 0,  
		over: doOpen, 
		timeout: 100, 
		out: doClose  
		};
		function doOpen() {
			jQuery('ul:first',this).stop(true, true).slideDown('fast');
			$(this).addClass('hover');		
		}
		function doClose() {
			jQuery('ul:first',this).stop(true, true).slideUp('fast');
			$(this).removeClass('hover');
		}
	jQuery('.menu > ul > li').hoverIntent(config);
	if ($.browser.msie) {
		$('.sideBar .title, .twitter .feed, .sponsors .gallery').boxShadow( 0,  0, 5, "#000");		
	}
	jQuery('hr').each(function(){
		$(this).wrap('<div class="hr"></div>');
	});
	jQuery('a[rel="external"]').click(function(){
		this.target = "_blank";
	});
});
