$(function(){
	/* scapa de outline pe link */
	$('a').click(function() { this.blur();});
	//$('.c').corner();
	$('.box').corner({
		tl: { radius: 6 },
		tr: { radius: 6 },
		bl: { radius: 6 },
		br: { radius: 6 },
		antiAlias: true,
		autoPad: true,
		validTags: ["div"]
	});
	$('.top').corner({
		tl: { radius: 6 },
		tr: { radius: 6 },
		bl: false ,
		br: false,
		antiAlias: true,
		autoPad: true,
		validTags: ["div"]
	});
	$('.bottom').corner({
		tl: false,
		tr: false,
		bl: { radius: 6 },
		br: { radius: 6 },
		antiAlias: true,
		autoPad: true,
		validTags: ["div"]
	});

	$("input.normal, textarea.normal").focus( function() {$(this).css({ background: "#FFF" });} ).blur( function() {$(this).css({ background: "#EEF2F5" });} );
	//Table odd even
	$(".list tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".list tr:even").addClass("alt");
});
function showPromo()
{
	if(document.getElementById('promo'))
	{
		document.getElementById('promo').style.display = 'none';document.getElementById('spot').style.display='block';
	}
}

function showPromo2()
{
	if(document.getElementById('promo'))
	{
		document.getElementById('spot').style.display='block';
	}
}