// JavaScript Document
$(document).ready(function(){
	var browser=navigator.appName
	var b_version=navigator.appVersion
	var version=b_version.split(";");
	var trim_Version=version[1].replace(/[ ]/g,"");
	if(browser=="Microsoft Internet Explorer" && trim_Version=="MSIE6.0")
	{
		$(".py_bane .jy1").hover(function(){
			$(this).css("background","url(img/jy3.png) no-repeat center top");
		},function(){
			$(this).css("background","url(img/jy1.png) no-repeat center top");
		});
		$(".py_bane .jy2").hover(function(){
			$(this).css("background","url(img/jy1.png) no-repeat center top");
		},function(){
			$(this).css("background","url(img/jy2.png) no-repeat center top");
		});
		$(".py_bane .jy3").hover(function(){
			$(this).css("background","url(img/jy2.png) no-repeat center top");
		},function(){
			$(this).css("background","url(img/jy3.png) no-repeat center top");
		});
		$(".py_bane .jy4").hover(function(){
			$(this).css("background","url(img/jy2.png) no-repeat center top");
		},function(){
			$(this).css("background","url(img/jy4.png) no-repeat center top");
		});
	} 		
	  
});