function initRollOverImages() {	var image_cache = new Object();	$("#global_navi a img, #top_global_navi a img, #products_navi a img, #products_navi02 a img").not("[src*='_on.']").each(function(i) {		var imgsrc = this.src;		var dot = this.src.lastIndexOf('.');		var imgsrc_on = this.src.substr(0, dot) + '_on' + this.src.substr(dot, 4);		image_cache[this.src] = new Image();		image_cache[this.src].src = imgsrc_on;		$(this).hover(			function() { this.src = imgsrc_on; },			function() { this.src = imgsrc; }		);	});}function initCurrentImages() {  //var cont_id  = $('#contents :first').attr("id");  var cont_id  = "02";  //alert(cont_id);  var imgsrc = $("#products_navi a img[src*="+cont_id+"]").attr("src");  alert(imgsrc);}$(function () {  $(document).ready(initRollOverImages);  //$(document).ready(initCurrentImages);  // アンカースクロール  $('a[href^=#]').click(function() {    var href= this.hash;	var $target = $(href == '#top' ? 'body' : href);		if($target.size()) {	  var top = $target.offset().top;	  $(this).blur();	  $($.browser.safari ? 'body' : 'html').animate({scrollTop:top}, 800, 'swing');	}	return false;  });});
