
$(document).ready(function() {
	/*$("#main h1");.css("backgroundImage", "url('./images/shv_logo.gif')") url("http://studio-happyvalley.com/css/images/shv_logo.png")*/
	//var imgName = 'url("http://studio-happyvalley.com/css/images/shv_logo.png")';
	var ua = navigator.userAgent;
	if(ua.match(/MSIE 6.0/)){
		$("#main h1,#close,#next,#prv,#baseInfoBox li,#baseInfoBox li div,#tInfWeb p,#frameTop div,#frameBottom div").each(function(){
			var img_path = $(this).css("backgroundImage");
			img_path = img_path.replace(/\.png/gi, ".gif");
			var cssSettings = {
				cursor:"pointer",
				backgroundImage:img_path
			};
			$(this).css(cssSettings);
		});
	}
});

