// JavaScript Document
$(document).ready(function(){
	//put your stuff here							 
	
	/*$('div.flashDiv').hover( function() {
		alert('Hover');
		//$(this).filter(".callOut").toggle();							
	}, function() {
		//$(this).filter(".callOut").toggle();
	});*/
	
	$('div.flashDiv').live('mouseenter', function () {
		$(this).css('z-index',110);
		if($.browser.msie) {	
			$(".callOut, .lightBeam", this).show();
		} else {
			$(".callOut, .lightBeam", this).fadeIn();
		}
	});
	
	$('div.flashDiv').live('mouseleave', function () {									   
		if($.browser.msie) {
			$(".callOut, .lightBeam", this).hide();									  
		} else {
			$(".callOut, .lightBeam", this).fadeOut('fast');	
		}
		$(this).css('z-index',100);	
	});
	
	
	$('.callOutClose a').live('click', function () {
		$(this).parent().parent().parent().fadeOut('fast');
	});
	
});


