/* 

Logicbox Web Solutions Ltd
18 Greek Street, London
http://logicbox.net

*/
(function($) {
		  
	$(function() {	
		
		//bg hover fade in/out
		if (!$.browser.msie) {
			$(".landing-btn").find('a').removeClass('highlight').empty().append('<span>').each(function() {
				var $span = $('> span',this).css('opacity', 0);
				$(this).hover(function() {
					$span.stop().fadeTo(500, 1);
				},function() {
					$span.stop().fadeTo(500, 0);
				});
			});
		}
		
	});
})(jQuery);
