jQuery(document).ready(function(){					
	$(".popup").hover(
		function(){
			$(this).find(".popuPadlckoff").attr({"style": 'display:inline'});
			$(this).find(".popuPadlckoff").animate({opacity: 1, top: "-30"}, {queue:false, duration:400});
		}, 
		function(){
			$(this).find(".popuPadlckoff").animate({opacity: 0, top: "-25"}, {queue:false, duration:400}, "linear",
				function(){
					$(this).find(".popuPadlckoff").attr({"style": 'display:none'});			
				}
			);
		});
});
jQuery(document).ready(function(){					
	$(".popup").hover(
		function(){
			$(this).find(".popuPadlckon").attr({"style": 'display:inline'});
			$(this).find(".popuPadlckon").animate({opacity: 1, top: "-70"}, {queue:false, duration:400});
		}, 
		function(){
			$(this).find(".popuPadlckon").animate({opacity: 0, top: "-65"}, {queue:false, duration:400}, "linear",
				function(){
					$(this).find(".popuPadlckon").attr({"style": 'display:none'});			
				}
			);
		});
});


jQuery(document).ready(function(){	
   $('.txtblck').hover( function(){
      $(this).css('background-color', '#eff4fb');
   },
   function(){
      $(this).css('background-color', 'transparent');
   });
   $('.txtblckLg').hover( function(){
      $(this).css('background-color', '#eff4fb');
   },
   function(){
      $(this).css('background-color', 'transparent');
   });
   $('.txtblcklgimg').hover( function(){
      $(this).css('background-color', '#eff4fb');
   },
   function(){
      $(this).css('background-color', 'transparent');
   });
});

