// JavaScript Document

$(document).ready(function() {
	
	$('<span />').appendTo('.principal li');
	$('<span />').appendTo('.titulo-home');
	$('<span />').appendTo('.programas.ativo');
//	$('.principal-estudante .box:first-child').css('padding-top','90px');
	$('.principal-estudante .box:nth-child(even)').css('margin-right','20px');
	$('.descricao dl.empresa dd:nth-child(odd)').css('margin-right','0');
	
	$('.tabela-midia table tbody tr:nth-child(odd)').css('background','url(../images/bg_td_midia_odd.gif) repeat-x top #fcd9c6');
	$('.tabela-midia table tbody tr:nth-child(even)').css('background','url(../images/bg_td_midia_even.gif) repeat-x top #ffecdd');
	
	/* MENU DROP-DOWN */
	$(document).ready(function(){
		$('#cssdropdown li.headlink').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
	});

	
});
