$( function(){
	// Fix the worst browser on Earth.
	if( $.browser.msie && parseInt(jQuery.browser.version) < 7 ){
		//$('img[src$=.png], button, #featured-products-prev, #featured-products-next').pngfix();
		// pngfix is breaking layout on news page.

		// Try to fix yet another IE6 problem...
		try{document.execCommand("BackgroundImageCache", false, true);}catch(e){}
	}
	// Make external links open in new window.  Using target _blank for now... 
	$('a[rel="external"], form[rel="external"]').each( function(){
		this.target = '_blank';
	});

	// Emulate placeholder attributes for older browsers.
	$('input[placeholder]').placeholder();
	
	$('.menu-item').hover(function() {
		$(this).find('.sub-menu').fadeIn('fast');
	}, function() {
		$(this).find('.sub-menu').fadeOut('fast');
	});
	
} );

