$(function(){

	$('#rotating-banner').innerfade({
		speed: 1500,
		timeout: 5000,
		containerheight: '600px'
	});


	// Open a new window to Yahoo.com
	// at the end of the window statement .blur will force
	// the new window to the background with most browsers
	window.open('/index/popup/','signup','width=600,height=414,left=200,top=200').blur();
	// Forces the current window to remain on top
	window.focus();
	
});