$(document).ready(function(){

  $('.popupwindow').popupwindow();
  //$('#content').corner('25px');
  
  $('#flash-homepage').flash({
    src: '/homepage.swf',
    width: 260,
    height: 200
  });
  
  $('#flash-gallery').flash({
    src: '/gallery.swf',
    width: 840,
    height: 600
  });

// PRODUCT SWATCHES
$('.swatches a').click(function(){
  target=this.rel;
  $(this).parents('p').children('a').removeClass('current');
  $(this).addClass('current');
  $(this).parents('div').children('img.money').addClass('hidden');
  $('#'+target).removeClass('hidden');
  return false;
});

});




