// JQuery

$(document).ready(function(){
	$('#main-box').mouseenter(function() {
		$('#main-box-text').animate({
			'top': '485px',
		}, 'slow');
	}).mouseleave(function() {
		$('#main-box-text').animate({
			'top': '506px',
		}, 'slow');
	})
	$('#top-box').hover(function() {
		$(this).css({backgroundImage :"url(images/brocoli.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/blog_headspace.jpg)"});
	})	
	$('#top-box').mouseenter(function() {
		$('#top-box-text').animate({
			'top': '110px',
		}, 'slow');
	}).mouseleave(function() {
		$('#top-box-text').animate({
			'top': '146px',
		}, 'slow');
	})
	$('#middle-box').hover(function() {
		$(this).css({backgroundImage :"url(images/bench.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/beach_hut.jpg)"});
	})		
	$('#middle-box').mouseenter(function() {
		$('#middle-box-text').animate({
			'top': '115px',
		}, 'slow');
	}).mouseleave(function() {
		$('#middle-box-text').animate({
			'top': '153px',
		}, 'slow');
	})
	$('#bottom-box').hover(function() {
		$(this).css({backgroundImage :"url(images/quote-womans-fitness.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/tge_heart.jpg)"});
	})	
	$('#bottom-box').mouseenter(function() {
		$('#bottom-box-text').animate({
			'top': '115px',
		}, 'slow');
	}).mouseleave(function() {
		$('#bottom-box-text').animate({
			'top': '153px',
		}, 'slow');
	})				
	$('#top-box-drinks').mouseenter(function() {
		$('#top-box-text-drinks').animate({
			'top': '20px',
		}, 'slow');
	}).mouseleave(function() {
		$('#top-box-text-drinks').animate({
			'top': '146px',
		}, 'slow');
	})
	$('#middle-box-drinks').mouseenter(function() {
		$('#middle-box-text-drinks').animate({
			'top': '35px',
		}, 'slow');
	}).mouseleave(function() {
		$('#middle-box-text-drinks').animate({
			'top': '153px',
		}, 'slow');
	})
	$('#bottom-box-drinks').mouseenter(function() {
		$('#bottom-box-text-drinks').animate({
			'top': '82px',
		}, 'slow');
	}).mouseleave(function() {
		$('#bottom-box-text-drinks').animate({
			'top': '153px',
		}, 'slow');
	})
	$('#top-box-drinks').hover(function() {
		$(this).css({backgroundImage :"url(images/prebiotics.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/ginseng.jpg)"});
	})
	$('#middle-box-drinks').hover(function() {
		$(this).css({backgroundImage :"url(images/cherrys.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/blueberry.jpg)"});
	})	
	$('#bottom-box-drinks').hover(function() {
		$(this).css({backgroundImage :"url(images/goji.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/aloe.jpg)"});
	})	
	$('#top-box-age').hover(function() {
		$(this).css({backgroundImage :"url(images/lutein.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/green_tea.jpg)"});
	})
	$('#middle-box-age').hover(function() {
		$(this).css({backgroundImage :"url(images/cherrys.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/acai.jpg)"});
	})
	$('#top-box-detox').hover(function() {
		$(this).css({backgroundImage :"url(images/milk-thistle.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/ginger.png)"});
	})
	$('#middle-box-detox').hover(function() {
		$(this).css({backgroundImage :"url(images/blueberry.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/aloe.jpg)"});
	})
	$('#top-box-energy').hover(function() {
		$(this).css({backgroundImage :"url(images/liquorice.png)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/ginseng.jpg)"});
	})
	$('#middle-box-energy').hover(function() {
		$(this).css({backgroundImage :"url(images/mangos.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/goji.png)"});
	})
	$('#top-box-multi').hover(function() {
		$(this).css({backgroundImage :"url(images/ginger.png)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/supplements.jpg)"});
	})
	$('#middle-box-multi').hover(function() {
		$(this).css({backgroundImage :"url(images/apple.jpg)"});
			}, function() {
		$(this).css({backgroundImage :"url(images/pome2.png)"});
	})	
	
});

