// JavaScript Document

$(document).ready(function(){
	$("#btn_gotomyblog").hover(
							 function(){
								 $(this).attr("src","templates/images/btn_gotomyblog_hover.gif");
								 },
							 function(){
								 $(this).attr("src","templates/images/btn_gotomyblog_normal.gif");
								 } 
							 );			   
						   
	$("#btn_postanewblog").hover(
							 function(){
								 $(this).attr("src","templates/images/btn_postanewblog_hover.gif");
								 },
							 function(){
								 $(this).attr("src","templates/images/btn_postanewblog_normal.gif");
								 } 
							 );	
	$("#btn_gotoallblog").hover(
							 function(){
								 $(this).attr("src","templates/images/btn_gotoallblog_hover.gif");
								 },
							 function(){
								 $(this).attr("src","templates/images/btn_gotoallblog_normal.gif");
								 } 
							 );	
	$(".blog_list_table tr").hover(
								function(){
									$(this).css("background","#efefef");
									},
								function(){
									$(this).css("background","#fff");
									}
								);
	$("input[@name='add']").hover(
								function(){
									$(this).attr("src","templates/images/btn_add_hover.gif");
									},
								function(){
									$(this).attr("src","templates/images/btn_add_normal.gif");
									}
								);
						   
	$(".btn_last").hover(
								function(){
									$(this).attr("src","templates/images/btn_last_hover.gif");
									},
								function(){
									$(this).attr("src","templates/images/btn_last_normal.gif");
									}
								);						   
	$("#btn_seelist").hover(
								function(){
									$(this).attr("src","templates/images/btn_seelist_hover.gif");
									},
								function(){
									$(this).attr("src","templates/images/btn_seelist_normal.gif");
									}
								);					   
	$(".btn_bind").hover(
								function(){
									$(this).attr("src","templates/images/btn/btn_bind_hover.gif");
									},
								function(){
									$(this).attr("src","templates/images/btn/btn_bind.gif");
									}
								);	
	$(".btn_submit").hover(
								function(){
									$(this).attr("src","templates/images/btn/btn_submit_hover.gif");
									},
								function(){
									$(this).attr("src","templates/images/btn/btn_submit.gif");
									}
								);
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
						   
})






