$(document).ready(function(){
		$('li.linkOferta').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); },
			function() { $(this).css('height', '270px'); });
	});



