
// create/append onload event
$(document).ready(function(){

  // select a's in imagenav, if available
  $('div.imagenav a').mouseover(function(){$(this).toggleClass("over");});
  $('div.imagenav a').mouseout(function(){$(this).toggleClass("over");});
  
  
});

function showAGB()
{
  window.open('/wirecard/agb.php','','width=750,height=500,scrollbars=yes');
}  



// create/append onload event
$(document).ready(function(){

  window.productshot = $("#shopPage-p dl dt").html();

  $("p#medianav a:first").bind("click",function(){
    $("#shopPage-p dl dt").html(window.productshot);
    return false;
  });

  $("p#medianav a:gt(0)").bind("click",function(){
    $("#shopPage-p dl dt").load(this.href);
    return false;
  });
  
});



