$(document).ready(function(){

	
	$("#homeBoxesHor .left").mouseover(function(){
	
			$('#homeBoxesHor .left').animate({ width: '120px' }, 500 );
			$('#homeBoxesHor .right').animate({ width: '80px' }, 500 );
		
		
	});
	
	$("#homeBoxesHor .left").mouseout(function(){
	
		
			$('#homeBoxesHor .right').animate({ width: '140px' }, 500 );
			$('#homeBoxesHor .left').animate({ width: '140px' }, 500 );
		
	});
	
	$("#homeBoxesHor .right").mouseover(function(){

			$('#homeBoxesHor .left').animate({ width: '120px' }, 500 );
			$('#homeBoxesHor .right').animate({ width: '160px' }, 500 );
		
	});
	
	$("#homeBoxesHor .right").mouseout(function(){
	
			$('#homeBoxesHor .right').animate({ width: '140px' }, 500 );
			$('#homeBoxesHor .left').animate({ width: '140px' }, 500 );
		
	});	
	
	
	
	
	$("#homeBoxesVer .top").mouseout(function(){
	
		
			$('#homeBoxesVer .top').animate({ height: '124px' }, 500 );
			$('#homeBoxesVer .bot').animate({ height: '124px' }, 500 );
		
	});
	
	$("#homeBoxesVer .bot").mouseover(function(){

			$('#homeBoxesVer .top').animate({ height: '104px' }, 500 );
			$('#homeBoxesVer .bot').animate({ height: '144px' }, 500 );
		
	});
	
	$("#homeBoxesVer .bot").mouseout(function(){
	
			$('#homeBoxesVer .top').animate({ height: '124px' }, 500 );
			$('#homeBoxesVer .bot').animate({ height: '124px' }, 500 );
		
	});
	

});
