jQuery(document).ready(function($){
	function animateIn(o){
		$('#homecolumns').prepend(o);

		o.animate({
			'height'  : '75%',
			'width'   : '95%',
			'opacity' : 1,
			'box-shadow' : '0px 0px 15px #000'
		},400,function(){
			$(this).find('.closelink').fadeIn('fast');
		});
	}

	$('#residential-heading').hover(function(){
		animateIn($('#residential-link-wrap'));
	});

	$('#commercial-heading').hover(function(){
		animateIn($('#commercial-link-wrap'));
	});

	$('.hidden-hvac-wrap .closelink').click(function(){
		$(this).css('display','none');

		$(this).parent().fadeOut(function(){
			$(this).css({
				'opacity' : '.1',
				'display' : 'none',
				'width'   : '1px',
				'height'  : '1px',
				'display' : 'none'
			});
		});

		return false;
	});


});

