$(document).ready(function(){  
	$('#openuploadwin').click(function () {
	  $(this).popupwin({
	    width:      "640",
	    height:     "500",
	    location:   "no",
	    menubar:    "no",
	    resizable:  "yes",
	    scrollbars: "yes",
	    status:     "yes",
	    toolbar:    "no"
	  });
	  location.href = $(this).attr("rel");
	  return false;
	});
	
	
	$('.toggleDetailImg').mouseover(function () {
    $('#product_img').attr("src", this.src.replace(/type=small/g, "type=large"));
    $('#product_img').attr("rel", $(this).attr("rel"));
  });
  
  $(".popupproduct").click (function () {
    var href = $(this).attr("href");
    var rel = $('#product_img').attr("rel");
    href = (href.indexOf("actpicid") == -1) ? href + "&actpicid=" + rel : href;
    href = (href.indexOf("moredetails") == -1) ? href.replace(/details/g, "moredetails") : href;
    $(this).attr("href", href);
    
    $(this).popupwin({
      width:      "430",
      height:     "500",    
      location:   "no",
      menubar:    "no",
      resizable:  "yes",
      scrollbars: "no",
      status:     "yes",
      toolbar:    "no",
      top:        "140",
      left:       "270"
    });
    return false;
  });   
  
  
  BT_setOptions({openWait:250, closeWait:0, cacheEnabled:false});  
});     