/**
 * @author AL(blueiceexecutive.com)
 * 29 AUG 08
 */

window.addEvent('domready', function(){
	$$('.gallery_thumb a img,.video_thumb a img').addEvent("mouseover",function(e){
		this.setStyle('border','2px solid #A90B0A');
	})
	
	$$('.gallery_thumb a img,.video_thumb a img').addEvent("mouseout",function(e){
		this.setStyle('border','2px solid #2686A6');
	})
});



	function CreateBookmarkLink(link) {
	 	title = "Bookmauritius"; 
	 	url = link;
	
		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; }

 }

