var fadeSpeed = 450;

jQuery(document).ready(function()
{
	$('.homePage a.btn').each(function()
	{ $(this).clone().addClass('here').appendTo('.homePage').css({ opacity: 0 }); })
	
	$('.homePage a').hover(function()
	{ $(this).stop().fadeTo(fadeSpeed, 1); },
	function()
	{ $(this).stop().fadeTo(fadeSpeed, 0) });
	
	$('.header ul a').hover(function()
	{ $('.homePage a.here.' + $(this).attr('class')).stop().fadeTo(fadeSpeed, 1);}, 
	function()
	{ $('.homePage a.here.' + $(this).attr('class')).stop().fadeTo(fadeSpeed, 0); });
});
