// JavaScript Document

$(document).ready(function(){
	$('#rations-button, #whats-on-button').mouseenter(function(){
		$('.top-link-text',this).stop().animate({'left':'30px'},300);
		$('.top-link-image',this).stop().animate({'right':'30px'},300);
	}).mouseleave(function(){
		$('.top-link-text',this).stop().animate({'left':'0px'},300);
		$('.top-link-image',this).stop().animate({'right':'0px'},300);
	});
	$('#shelf-buttons > div').mouseenter(function(){
		$('.shelf-link-text',this).stop().animate({'right':'-5px'},300);
	}).mouseleave(function(){
		$('.shelf-link-text',this).stop().animate({'right':'0px'},300);
	});
	
	$('a.opacity').hover(function(){
		$(this).addClass("hovered");
		$('a.opacity:not(.hovered)').children('img').stop().animate({'opacity': 0.5});
	}, function(){
		$(this).removeClass("hovered");
		$('a.opacity:not(.hovered)').children('img').stop().animate({'opacity': 1});
	});
	
});
