$(function()
{
	if(!$.browser.msie)
		MENU.init();
	else
		$('#menu').css('top', -28);

	SPLASH.init();

	if($('.box').html())
		BOXES.init();
});

var BOXES = {

	init: function()
	{
		$('.box div').hover(function()
		{
			$(this).children('.tab').animate({ top: 70 }, 250, function(){});
		}, function()
		{
			$(this).children('.tab').animate({ top: 122 }, 550, function(){});
		});

	}
};

var MENU = {

	init: function()
	{
		$('#menu li').hover(function()
		{
			$(this).children('a').animate({ top: -7 }, 250, function(){});
			$(this).animate({ 'backgroundPosition': '(right 8px)' }, 250, function(){});

		}, function()
		{
			$(this).children('a').animate({ top: 0 }, 250, function(){});
			$(this).animate({ 'backgroundPosition': '(right 16px)' }, 250, function(){});
		});
	}
};

var SPLASH = {

	init: function()
	{
		$('#splash img').hover(function()
		{
			$(this).addClass('hover');
		}, function()
		{
			$(this).removeClass('hover');
		});
	}

};
