function showGallery(iGallery) {
	$("div[name=gallery"+iGallery+"] div[id='pagegallery-image']").toggle();
	return false;
}

function CreateBookmarkLink() {
	title = $('title').html(); 
	url = window.location;
	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; }
}

$(Shadowbox.init);
$(document).ready(function(){
});

function sendToFriend() {
	strUrl = window.location;
	strTitle = $('title').html();
	Shadowbox.open({
		player:'iframe',
		content:'sendfriend.php?strtitle='+escape(strTitle)+'&strurl='+escape(strUrl),
		width:420,
		height:470,
			options: {
				modal:true
			}
	});
}


