$(document).ready(function() {
//Open External Links in a New Window/tab
$('a[rel*=external]').click( function() {
this.target = "_blank";
});

/*! jQuery Cycle Plugin (withOUT Transition Definitions) */
$('div.banner_home_page_top').cycle({
	cleartypeNoBg: false // enable cleartype corrections
});
$('div.banner_home_page_top').hover( function() {
		$('div.banner_home_page_top').cycle('pause');
	},
	function() {
		$('div.banner_home_page_top').cycle('resume');
});

//Software Styling Overrides
$('.ProductList li.newFeatured').width(190);
if ($('#HomeNewProducts').length) {
	$('#HomeFeaturedProducts li.newFeatured').height(296);
}

});
