$(function() {
	$(".imgon").css("opacity","0.0");

	$(".logowrapper").hover(function () {
		$(".imgon", this).stop().animate({ opacity: 1.0 });
	},

	function () {
		$(".imgon", this).stop().animate({ opacity: 0.0 }, "slow");
	});
});



$(function() {

	$("#column1").hover(function () {
		$("#skigocare_copy").css({ 'z-index': '60' });
		setTimeout(function(){$("#skigocare_copy").stop().animate({ 'bottom': '0px' });}, 500);
	},
	function () {
		$(".drop").stop().animate({ 'bottom': '-35px' }, "slow");
		$("#skigocare_copy").css({ 'z-index': '1' });
	});
	
	$("#column2").hover(function () {
		$("#skigoweb_copy").css({ 'z-index': '60' });
		setTimeout(function(){$("#skigoweb_copy").stop().animate({ 'bottom': '0px' });}, 500);
	},
	function () {
		$("#skigoweb_copy").css({ 'z-index': '1' });
		$(".drop").stop().animate({ 'bottom': '-35px' }, "slow");
	});
	
	$("#column3").hover(function () {
		$("#skigomail_copy").css({ 'z-index': '60' });
		setTimeout(function(){$("#skigomail_copy").stop().animate({ 'bottom': '0px' });}, 500);
	},
	function () {
		$(".drop").stop().animate({ 'bottom': '-35px' }, "slow");
		$("#skigomail_copy").css({ 'z-index': '1' });
	});
	
	$("#column4").hover(function () {
		$("#skigoreal_copy").css({ 'z-index': '60' });
		setTimeout(function(){$("#skigoreal_copy").stop().animate({ 'bottom': '0px' });}, 500);
	},
	function () {
		$("#skigoreal_copy").css({ 'z-index': '1' });
		$(".drop").stop().animate({ 'bottom': '-35px' }, "slow");
	});
});



