// JavaScript Document

$(document).ready(function(){
						   
$("#war").click(function(){
						 
						  $('#warlink').trigger('click');
						 }
				);
						   
$("#home a").hover(function() { 
$(this).animate({ color: "#0EBFE4"}, 200); 
},function() { 
$(this).animate({ color: "#FFF" }, 300); 
});
	
$("#spon a").hover(function() { 
$(this).animate({ color: "#19d48b"}, 200); 
},function() { 
$(this).animate({ color: "#FFF" }, 300); 
});

$("#cont a").hover(function() { 
$(this).animate({ color: "#d8f511"}, 200); 
},function() { 
$(this).animate({ color: "#FFF" }, 300); 
});

$("#regi a").hover(function() { 
$(this).animate({ color: "#eff71e"}, 200); 
},function() { 
$(this).animate({ color: "#FFF" }, 300); 
});

$("#aba a").hover(function() { 
$(this).animate({ color: "#9eed15"}, 200); 
},function() { 
$(this).animate({ color: "#FFF" }, 300); 
});

$("#even a").hover(function() { 
$(this).animate({ color: "#7bdefe"}, 200); 
},function() { 
$(this).animate({ color: "#FFF" }, 300); 
});

$("#spor a").hover(function() { 
$(this).animate({ color: "#eb6807"}, 200); 
},function() { 
$(this).animate({ color: "#FFF" }, 300); 
});

$("#sche a").hover(function() { 
$(this).animate({ color: "#19d48b"}, 200); 
},function() { 
$(this).animate({ color: "#FFF" }, 300); 
});

$("#broc a").hover(function() { 
$(this).animate({ color: "#0EBFE4"}, 200); 
},function() { 
$(this).animate({ color: "#FFF" }, 300); 
});

$(".el").hide();

$("#con a#eve").click(function() {
$(this).next('.el').toggle("slow");
$("#con a#eve").toggle(500);
$(this).toggle(500);
});

$("#con a#eve").hover(function() { 
$(this).animate({ color: "#FFF"}, 200); 
},function() { 
$(this).animate({ color: "#36F" }, 300); 
});

});





