var highestHeight = 0;

$(window).load(
	function(){
		$('.whatsonFeed').each(function(){
			if(highestHeight < $(this).outerHeight(true)){
				highestHeight = $(this).outerHeight(true);
			}
		});
		$('.whatsonFeed').height(highestHeight);
		if(($('.bodycopy').height()-167) > $('.sidebar-content').height()){
			$('.sidebar-content').height($('.bodycopy').height()-167);
		}
		$('.sidebar-content').css('visibility','visible');
		
	}
);

$(document).ready(
	function(){
		$('.socialnetwork a img,#wishlisting .loading_off a img').fadeTo(0,0.4);
		
		$('.socialnetwork a,#wishlisting .loading_off a').hover(function(){
			$(this).children('img').fadeTo(0,1);
		}, function(){
			$(this).children('img').fadeTo(0,0.4);
		});
		
		$('.storelisting ul li').click(function(){
			if($(this).children('.largeMap').is(":visible")){
				$(this).children('.largeMap').slideUp(200);
			} else {
				$('.largeMap').slideUp(200);
				$(this).children('.largeMap').slideDown(200);
			}
		});
		$('#searchquery').focus(function(){
			$(this).css('color','#5a5a5a');	
		});
		$('#searchquery').blur(function(){
			$(this).css('color','#CFCFCF');	
		});
		
		if($('.slideshow li').length > 1){
			 $('.slideshow').cycle({
				fx: 'fade',
				timeout: 4000
			});
		}
		else {
			$('.slideshow li:first').show();	
		}
	}
);
