jQuery(document).ready(function() {
	
	jQuery("#navIconR").mouseover(function () {
		jQuery(".infoteaser").css("display","block");
	});
	
	jQuery("#navIconR").mouseout(function () {
		jQuery(".infoteaser").css("display","none");
	});
	
	
	jQuery(".infoteaser").mouseover(function () {
		jQuery(this).css("display","block");
	});
	
	jQuery(".infoteaser").mouseout(function () {
		jQuery(this).css("display","none");
	});
	
});