$(document).ready(function(){
	//$(".prodText").hide();
	$("span.moreinfo").hover(function() {
		$(this).addClass('moreinfoOn');
	},function(){
		var $this = $(this);	
		if( !$this.is('.moreInfoArrowDown') ) {
			$(this).removeClass('moreinfoOn');
		}
	});
	$("span.moreinfo").click(function(){				
		var $this = $(this);		
		if( $this.is('.moreInfoArrowDown') ) {
			$this.children("#moreInfoArrow").css('background','url(/anf/images/I-moreInfoArrow.gif) no-repeat 0 0px');
			$this.removeClass('moreInfoArrowDown');
		}else{
			$this.children("#moreInfoArrow").css('background','url(/anf/images/I-moreInfoArrow.gif) no-repeat 0 -7px');
			$this.addClass('moreInfoArrowDown');
		}	
		$this.next("#prodText").slideToggle(100);
		//$("#prodText").slideToggle(100);
	});	
	$(".emailAFriendLink").click(openEmailFriend);
	$(".emailAFriendLink").click(showFadeUp);
});
