function CreateBookmarkLink() {

	var title = "TechObs - Smartly shop for your Apple products"; 
 	var url = "http://www.techobs.com";

	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; 
	} else {
		alert("Sorry - you'll have to bookmark this page manually");
	}
}

function showTab(name) {
	$('#tabs ul li.tab_hover').removeClass('tab_hover');
	$('#tab_' + name).parent().addClass('tab_hover');
	$('#fold_content div.tab_content').hide();
	$('#' + name + '_content').show();
}
