/* =======================================

	Common Javascript
	
	-----------------------------------------
	INDEX
	-----------------------------------------
	1.Button Rollover

========================================== */

/* 1.Button Rollover
========================================== */
$(function() {
  var image_cache = new Object();
  $(".swap").each(function(i) {
    var imgsrc = this.src;
    var dot = this.src.lastIndexOf('.');
    var imgsrc_on = this.src.substr(0, dot) + '_o' + 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 addcart(id){

str='<div class="topcartDiv"><form name="form" id="form" method="post" action="/products/detail.php?product_id='+id+'"><input type="hidden" name="mode" value="cart" /><input type="hidden" name="product_id" value="'+id+'" /><input type="hidden" name="quantity" value="1" /><input type="image" src="/user_data/packages/default/images/parts/btn_cartin_l.png" width="145" height="31" id="submit" alt="カートに入れる" /></form></div>';

document.write (str+'テスト');

}