function suggestionwindow(url) {
  window.open (url,'','width=700,height=570,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
}
function tellafriendwindow(url) {
  window.open (url,'','width=700,height=700,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
}
function scrollablewindow(url) {
  window.open (url,'','width=735,height=550,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
}

 jQuery(document).ready(function(){
  
  var mainSource = jQuery('#ysw-homebanner .ysw-hb0 img').attr('src');
  var shop1Source = jQuery('#ysw-homebanner .ysw-hb1 img').attr('src');
  var shop2Source = jQuery('#ysw-homebanner .ysw-hb2 img').attr('src');

 jQuery('#ysw-homebanner .ysw-hb1 img').mouseover ( function()  {
	var newShop = jQuery('#ysw-shop-image-rollover-1 img').attr('src');
	jQuery('#ysw-homebanner .ysw-hb1 img').attr('src',newShop);
      var newMain = jQuery('#ysw-main-image-rollover-1 img').attr('src');
	jQuery('#ysw-homebanner .ysw-hb0 img').attr('src',newMain);
      });

  jQuery('#ysw-homebanner .ysw-hb1 img').mouseout ( function()  {
	jQuery('#ysw-homebanner .ysw-hb1 img').attr('src',shop1Source);
       jQuery('#ysw-homebanner .ysw-hb0 img').attr('src',mainSource);
      });

 jQuery('#ysw-homebanner .ysw-hb2 img').mouseover ( function()  {
	var newShop = jQuery('#ysw-shop-image-rollover-2 img').attr('src');
	jQuery('#ysw-homebanner .ysw-hb2 img').attr('src',newShop);
      var newMain = jQuery('#ysw-main-image-rollover-2 img').attr('src');
	jQuery('#ysw-homebanner .ysw-hb0 img').attr('src',newMain);
      });

  jQuery('#ysw-homebanner .ysw-hb2 img').mouseout ( function()  {
	jQuery('#ysw-homebanner .ysw-hb2 img').attr('src',shop2Source);
       jQuery('#ysw-homebanner .ysw-hb0 img').attr('src',mainSource);
      });

});
