 $(document).ready(function(){  
   
	$(".specialOfferIcon a").hover(function() {
		$(this).next(".specialOfferIconDescription").stop(true, true).animate({opacity: "show", top: "16"}, "normal");
	}, function() {
		$(this).next(".specialOfferIconDescription").animate({opacity: "hide", top: "26"}, "fast");
	});
	
	$(".packageUpsellIcon a").hover(function() {
		$(this).next(".packageUpsellIconDescription").stop(true, true).animate({opacity: "show", top: "16"}, "normal");
	},	function() {
		$(this).next(".packageUpsellIconDescription").animate({opacity: "hide", top: "26"}, "fast");
	});
	
	$(".lastMinuteIcon a").hover(function() {
		$(this).next(".lastMinuteIconDescription").stop(true, true).animate({opacity: "show", top: "16"}, "normal");
	},	function() {
		$(this).next(".lastMinuteIconDescription").animate({opacity: "hide", top: "26"}, "fast");
	});
	
	$(".lastMinuteIcon a.bigger").hover(function() {
		$(this).next(".lastMinuteIconDescription2").stop(true, true).animate({opacity: "show", top: "16"}, "normal");
	}, function() {
		$(this).next(".lastMinuteIconDescription2").animate({opacity: "hide", top: "26"}, "fast");
	});
	
	
   $(".resultFunction_bigUp a").hover(function() {
		$(this).next(".resultFunction_bigUpIconDescription").stop(true, true).animate({opacity: "show", left: "-138"}, "normal");
	}, function() {
		$(this).next(".resultFunction_bigUpIconDescription").animate({opacity: "hide", left: "-148"}, "fast");
	});
	
	
	$(".limitedSymbol img").hover(function() {
		$(this).next(".limitedInfo").stop(true, true).animate({opacity: "show", top: "16"}, "normal").css({"z-index" : '99'});
	}, function() {
		$(this).next(".limitedInfo").animate({opacity: "hide", top: "26"}, "fast");

	});
	
   $(".infoPoint a").hover(function() {
		$(this).next(".depDateHelp").stop(true, true).animate({opacity: "show", top: "18"}, "normal").css({"z-index" : '99'});
	}, function() {
		$(this).next(".depDateHelp").animate({opacity: "hide", top: "25"}, "fast");

	});
   
    $(".mailTrolleyImage").hover(function() {
    	$(".miniTrolleyHint").slideDown("fast");
		$(".toolHintIndicate").show().css({"margin-left":"89px"});
		$(".trolleyHintDesc").hide();
		$(".mailTrolleyDesc").show();
	});
	
	$(".addToCalImage").hover(function() {
    	$(".miniTrolleyHint").slideDown("fast");
		$(".toolHintIndicate").show().css({"margin-left":"70px"});
		$(".trolleyHintDesc").hide();
    	$(".addToCalDesc").show();
	});
	
	$(".removeTrolleyAllImage").hover(function() {
    	$(".miniTrolleyHint").slideDown("fast");
		$(".toolHintIndicate").show().css({"margin-left":"66px"}); //45
		$(".trolleyHintDesc").hide();
    	$(".removeTrolleyAllDesc").show();
	});
	
	$(".createPdfImage").hover(function() {
	   	$(".miniTrolleyHint").slideDown("fast");
		$(".toolHintIndicate").show().css({"margin-left":"22px"});
		$(".trolleyHintDesc").hide();
    	$(".createPdfDesc").show();
	});
   
 });  
