

$(document).ready(function(){

	$("img", ".overteaser .rowPic").css("border", "1px solid #909090");

	$(".overteaser .row").click(function(){
		top.location.href = $(".rowPic A", $(this)).attr("href");
	});

	$(".showMe", ".overteaser").show();
	$(".hideMe", ".overteaser").hide();
	
	
	var openRowDivId = $(".showMe", ".overteaser").parent().attr("id");
	
	$(".overteaser .row").bind("mouseenter", 
		function(e)	
		{
			if (!$.browser.msie) return
			
			if (openRowDivId != "") 
			{
				$(".rowPic", $("#"+openRowDivId)).hide();
				$(".rowText", $("#"+openRowDivId)).show();
			}
			$(".rowText", $(this)).hide();
			$(".rowPic", $(this)).show();
			openRowDivId = $(this).attr("id");
	}); 
	
	
	


	$(".overteaser .row").mouseover(
		function() {
			if ($.browser.msie) return
			currentTeaserDivID = $(this).parent().attr("id");
			
			$(".rowPic", $("#"+currentTeaserDivID)).hide();
			$(".rowPic", $(this)).show();
			$(".rowText", $("#"+currentTeaserDivID)).show();
			$(".rowText", $(this)).hide();
			
		});
	
});

