$(function(){
	$("#menu li.menu").hover(function(){
		$(this).find("a").addClass("hover");
		$(this).find("ul").stop(true,true).fadeIn(200);
		
	},function(){
		$(this).find("a").removeClass("hover");
		$(this).find("ul").stop(true,true).fadeOut(200);
	});
});

$(document).ready(function(){
	$("#background img").fadeIn(2000);
	$("#background img").css({height: screen.height,width: screen.width});
	BGresize("#background img");
	$(window).resize(function(){
		BGresize("#background img");
	});
});
$(function(){
	var active = "campanha-header-link active",
		normal = "campanha-header-link";
	$("#c1-l").click(function(){
		$("#c2-l").attr("class",normal);
		$(this).attr("class",active);
		$("#c2").stop(true,true).hide(500);
		$("#c1").stop(true,true).show(500);
	});
	$("#c2-l").click(function(){
		$("#c1-l").attr("class",normal);
		$(this).attr("class",active);
		$("#c1").stop(true,true).hide(500);
		$("#c2").stop(true,true).show(500);
	});
	$("#login input").keypress(function(event){
  		if(event.which==13){
			
		}
	});
});
$(function(){
	$("#news").hover(function(){
		$(this).find(".news-box").stop(true,true).fadeIn(200);
		
	},function(){
		$(this).find(".news-box").stop(true,true).fadeOut(200);
	});
});


