

jQuery.noConflict();
jQuery(document).ready(function(){

  // Dynamically round the corners of the form buttons
  //jQuery('.form-button').corners("7px");
  //jQuery('.form-button-alt').corners("7px")

  jQuery('.subscribeLink').nyroModal({
    bgColor: '#000000',
    width: 400,
    height: 430,
    titleFromIframe: false,
    autoSizable: false,
    css: {
      bg: {
        backgroundColor:'#000'
      },
      content: {
        backgroundColor:'#000'
      },
      wrapper: {
        borderColor:'#777'
      }
    },
    closeButton: '<a href="#" class="nyroModalClose" id="closeBut" title="close">Close</a>'
  });
  
  jQuery('.product_thumb_image').click(function() {
    jQuery('#image').attr('src',jQuery(this).attr('href'));
    //thumbRemoveSelected();
    //jQuery(this).next().addClass('img_border_selected');
    return false;
  
  });
  
  function thumbRemoveSelected() {
  
    $('a.product_thumb_image').each(function() {
      jquery(this).removeClass('img_border_selected')
    });
    
  }
  
});


