$(document).ready(function() {
	//Open External Links in a New Window/tab
	$('a[rel*=external]').click( function() {
		this.target = "_blank";
	});
	$('div#Wrapper div.WideWithLeft').parent().addClass('singleBlueLeft');

	/*! 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'); 
	});

});
