// 1-800-BETS-OFF Standard JavaScript

$(document).ready(function() {
	//Determine IE Status
	var is_ie = false;
	if($.browser.msie) {
		is_ie = true;
	}
	
	//IE6 fixes
	if(is_ie==true && parseFloat($.browser.version)<=6.0) {
		$('.box.left .overlay').hide();
		$('.menu li:has(ul)').hover(function() {
			$('.sub',this).addClass('iehover').show();
		}, function() {
			$('.sub',this).removeClass('iehover').hide();
		});
	}
	
	//Drop Down Menu - Opacity
	if(is_ie==false) {
		$('#head .menu li:has(ul)').hover(function() {
			$('.sub',this).animate({ opacity:0.95 }, 1);
			$('.sub a',this).animate({ opacity:1.0 }, 1);
		}, function() {
			$('.sub',this).animate({opacity:1.0 }, 1);
		});
		$('#head .menu li:has(ul)').each(function() {
			$('li:last',this).css('border-bottom', 'none');
		});
	}
	
	//Landing Page Banners
	$('#main_bnr .banner:first').show();
	if(jQuery().cycle && $('#main_bnr').length>0) {
		$('#main_bnr').cycle({ fx:'fade', timeout:6000, speed:1000, pause:1 });
	}
});
