// JavaScript Document

$(document).ready(function() {
			
			
		initMenu();
		redondear();
	
	});

function initMenu(){
	
	$('.itmCnt').hover(function(){	
								
				$(this).animate({'top':'-100px',height: "140px"},{queue:false,duration:500});
			}, function(){
				$(this).animate({height: "40px",'top':'0px'},{queue:false,duration:500});
			});			
}


