		$(document).ready(function() {   
			$('.button_fade, .apply_now, .read_more, .contact_a_prive_consultant, .login_to_prive_website, .more_info, .see_all_offers').append('<span class="hover"></span>').each(function () {  
				var $span = $('> span.hover', this).css('opacity', 0);  
				$(this).hover(function () {  
					$span.stop().fadeTo(500, 1); 
				}, function () {  
					$span.stop().fadeTo(500, 0);
				});  
			}); 
			
			$('.link_overlay').hover(
				function() {
					$(this).parent().children().children().css({'color': '#fff !important'});
					$(this).parent().children('.icon_box').css({'opacity': '0.6'});
				},
				function() {
					$(this).parent().children().children().css({'color': '#CDCBC7 !important'});
					$(this).parent().children('.icon_box').css({'opacity': '1'});
				});
		}); 
