﻿function CreateBookmarkLink() {

 title = document.title; 
  // Blogger - Replace with <$BlogItemTitle$> 
  // MovableType - Replace with <$MTEntryTitle$>

 url = location.href;
  // Blogger - Replace with <$BlogItemPermalinkURL$> 
  // MovableType - Replace with <$MTEntryPermalink$>
  // WordPress - <?php bloginfo('url'); ?>

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
	}
 
function tb_special(pi_href,group)
{
	var caption = this.title || this.name || "";

	//var group = this.rel || false;
	//alert(group);

	tb_show(caption, pi_href, group);
	
}

 
function sendToFriend(url)
{
	var caption = this.title || this.name || "";

	var group = this.rel || false;
	//alert(url);
	tb_show(caption, "/views/shop/sendtofriend.aspx?url=" + url+"&KeepThis=true&TB_iframe=true&height=400&width=600", group);

}

$(document).ready(function () {
    $('.NavH_Main .NavText').hover(
          function () {
              $(this).addClass("AS_Hover");
          },
          function () {
              $(this).removeClass("AS_Hover");
          }
        );

});


