$(document).ready(function(){
	// Allows all links with this tag to open in a blank window
	 $("a[rel='external'], a[title='external']").click(function(){
		window.open(this.href);
		return false;
	});
	
	// Rounded corners for IE8 and below on top nav tabs
	$('#tabNav li a.tab').corner("top 15px");
	
	// Allows the search placeholder to work on non-HTML5 browsers
	$('#q').placehold();
	
	$("#contentBanner").cycle({
		fx:			'fade',
		pause:		'true',
		timeout:	9000,
		speed: 		700,
		pager:		'#nav',
		fastOnEvent: true
	});
	
	$(".three .container2 div").hide().eq(Math.floor(Math.random()*$(".three .container2 div").length)).show();
	
	$(".three .container3 div:gt(6)").hide();
});
