// JavaScript Document
$(function() {
	//Orosberg logo animation
	$("#orosberg").mouseover(function() {
				$("#orosberg").animate({height: 63},500);
	});
	
	$("#orosberg").mouseout(function() {
				$("#orosberg").animate({height: 10},200);
	});
	//end
});
