// JavaScript Document
$(function() {
	$(".button").find("img").mouseover(function(){
		this.src=this.src.replace(".jpg","_1.jpg");						  
	 }).mouseout(function(){
		 this.src=this.src.replace("_1.jpg",".jpg");
	 });
	
	
	$(".news_list").find("a").mouseover(function(){
		$(this).next("span").css("color","#ad0602");										
	}).mouseout(function(){
		$(this).next("span").css("color","");	
	});
	
	$(".right_button_td").mouseover(function(){
		$(this).css("background","url(images/right_button_red.jpg) repeat-y 100% 0");
		$(this).find(".right_button_a").css("color","#fff");
	}).mouseout(function(){
		$(this).css("background","url(images/right_button_black.jpg) repeat-y 100% 0");
		$(this).find(".right_button_a").css("color","#474646");
	});
}); 

