
		$(function() {
			$('#headernews').show();
			$('#headernews').cycle({
				fx:    'scrollDown',
				delay: -1000
		    });
		
		
		
			$('#logo').cycle({
				fx: 'fade',
				random: 1
				
			});
			
			$('#one').hover(function(){
				$(this).css('background-color','black');
				$(this).find("a").css('color','white');
				$(this).css('cursor','pointer');
				
			
			},
			function (){
				$(this).css('background-color','#DBDBDB');
				$(this).find("a").css('color','black');
				$(this).css('cursor','default');
			
			});
	
			$('#two').hover(function(){
				$(this).css('background-color','#C40000');
				$(this).find("a").css('color','white');
				$(this).css('cursor','pointer');
				
			
			},
			function (){
				$(this).css('background-color','#DBDBDB');
				$(this).find("a").css('color','black');
				$(this).css('cursor','default');
			
			});

			$('#three').hover(function(){
				$(this).css('background-color','#008000');
				$(this).find("a").css('color','white');
				$(this).css('cursor','pointer');
				
			
			},
			function (){
				$(this).css('background-color','#DBDBDB');
				$(this).find("a").css('color','black');
				$(this).css('cursor','default');
			
			});

			$('#four').hover(function(){
				$(this).css('background-color','#0000CC');
				$(this).find("a").css('color','white');
				$(this).css('cursor','pointer');
				
			
			},
			function (){
				$(this).css('background-color','#DBDBDB');
				$(this).find("a").css('color','black');
				$(this).css('cursor','default');
			
			});			
			
			
		});
