// JavaScript Document
$(document).ready(function() { 
    $('#s3slider').s3Slider({ 
        timeOut: 4000 
    });
	$('.homepage_news_zone').children('ul').children('li').mouseenter(function(){
		$(this).children('a').css({"color":"#FFFFFF", "text-decoration":"underline"});
		$(this).animate({backgroundColor:"#BB0000"}, 300);
	}).mouseleave(function(){
		$(this).children('a').css({"color":"#000000", "text-decoration":"none"});
		$(this).animate({backgroundColor:"#FFFFFF"}, 300);
	}).click(function(){
		location.href = $(this).children('a').attr('href');
	});
});
