/*
Author: Creativat.com
*/
// <![CDATA[ 
$(document).ready(function(){
	$('.list li').css("cursor","pointer").click(function(){
		location.href = $(this).find('a').attr('href');
	});
	
	var mrwElementos = $('.banner, .list li, #header a img, .links h4 a img, .txt a img, .data h4 img, input');
	mrwElementos.mouseenter(function(){
		$(this).fadeTo('fast', 0.8);
	});
	mrwElementos.mouseleave(function(){
		$(this).fadeTo('fast', 1);
	});	
	
	// Efecte tr taules
	$('tr').not('.tablaTop').mouseenter(function(){
		$(this).css('background-color', '#ebebeb');
	});
	$('tr').not('.tablaTop').mouseleave(function(){
		$(this).css('background-color', '');
	});	
});
// ]]>
