$(document).ready(function(){
	var more = $("img.more").attr('src');
	var info = $("img.info").attr('src');
	var content = $("div.content").text();
	
	$("img.more").mouseover(function(){
		$(this).attr('src','images/more_02.gif');
	})
	.mouseout(function(){
		$(this).attr('src',more);
	});
	
	$("img.info").mouseover(function(){
		$(this).attr('src','images/de_02.gif');
	})
	.mouseout(function(){
		$(this).attr('src',info);
	})
	;
	
	
	/*
		
	$("img.btn2").mouseover(function(){
		$(this).attr('src','images/ksf_4_02_1.jpg');
		$(this).prev().attr('src','images/ksf_4_01_1.jpg');
		$("div.background").css('background','url(images/ksf_4_03_1.jpg) no-repeat');
		$("div.content").text("康师傅各地招标信息");
	})
	$("img.btn1").mouseover(function(){
		$(this).attr('src','images/ksf_4_01.jpg');
		$(this).next().attr('src','images/ksf_4_02.jpg');
		$("div.background").css('background','url(images/ksf_4_03.jpg) no-repeat');
		$("div.content").text(content);
	})
	*/
});
