// JavaScript Document


	
$(document).ready(function() {
	$('.about').click(function()
		{
			$('.aboutInfo').stop().animate({top:"131px"}, {duration:200});
			$('.musicInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.pressInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.videosInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.galleryInfo').stop().animate({top:"-430px"}, {duration:200});
			return false;
		});
		
		$('.closeInfo').click(function()
		{
			 $('.content').stop().animate({top:"-430px"}, {duration:200});
			 return false;
		});
		
	$('.music').click(function()
		{
			$('.musicInfo').stop().animate({top:"131px"}, {duration:200});
			$('.aboutInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.pressInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.videosInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.galleryInfo').stop().animate({top:"-430px"}, {duration:200});
			return false;
		});
		
		$('.closeInfo').click(function()
		{
			 $('.content').stop().animate({top:"-430px"}, {duration:200});
			 return false;
		});
		
	$('.press').click(function()
		{
			$('.pressInfo').stop().animate({top:"131px"}, {duration:200});
			$('.musicInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.aboutInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.videosInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.galleryInfo').stop().animate({top:"-430px"}, {duration:200});
			return false;
		});
		
		$('.closeInfo').click(function()
		{
			 $('.content').stop().animate({top:"-430px"}, {duration:200});
			 return false;
		});
		
	$('.videos').click(function()
		{
			$('.videosInfo').stop().animate({top:"131px"}, {duration:200});
			$('.musicInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.pressInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.aboutInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.galleryInfo').stop().animate({top:"-430px"}, {duration:200});
			return false;
		});
		
		$('.closeInfo').click(function()
		{
			 $('.content').stop().animate({top:"-430px"}, {duration:200});
			 return false;
		});
		
	$('.gallery').click(function()
		{
			$('.galleryInfo').stop().animate({top:"131px"}, {duration:200});
			$('.musicInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.pressInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.videosInfo').stop().animate({top:"-430px"}, {duration:200});
			$('.aboutInfo').stop().animate({top:"-430px"}, {duration:200});
			return false;
		});
		
		$('.closeInfo').click(function()
		{
			 $('.content').stop().animate({top:"-430px"}, {duration:200});
			 return false;
		});
		
		
		
		
		
		
		
	
	
	$('.navItem').mouseover(function()
		{
			$(this).stop().animate({width:"163px"}, {duration:200});
		})
		.mouseout(function()
		{
			$(this).stop().animate({width:"37px"}, {duration:200});
		});
	
});

