$(document).ready(function(){
	$("#tabs").tabs({
			selected : tab_set
		});
	$('#tabs').bind('tabsselect', function(event, ui) {
			switch(ui.index)
			{
			case 0:
			 window.location.href='index.html';
			 break;
			case 1:
			 window.location.href='Horse_riding_Ireland.htm';
			 break;
			 case 2:
			 window.location.href='Foxhunting_Ireland.htm';
			 break;
			 case 3:
			 window.location.href='Photo_Gallery.htm';
			 break;
			 case 4:
			 window.location.href='weather.html';
			 break;
			 case 5:
			window.location.href='4x4.html';
			 break;
			 case 6:
			 window.location.href='Contact.htm';
			 break;
			}
	});
   var path = location.pathname.substring(1);

   if ( path )
   {

     $('a[href$="' + path + '"]').addClass("activated");
	  
   }
	 
	 
	 $('a.gallery').lightBox({fixedNavigation:true,
				overlayBgColor: '#CAE0A9',
				overlayOpacity: 0.8,
				imageLoading: 'script/images/lightbox-ico-loading.png',
				imageBtnClose: 'script/images/lightbox-btn-close.png',
				imageBtnPrev: 'script/images/lightbox-btn-prev.gif',
				imageBtnNext: 'script/images/lightbox-btn-next.gif',
				containerResizeSpeed: 350
			   });
	$("#dialog").dialog({
			autoOpen: false,
			height: 520, 
			width: 780,
			modal: true,
			buttons: {
				"Click To Close": function() {
					$(this).dialog('close');
				}
			}
		});
	$('#opener').click(function() {
				$('#dialog').appendTo('.modal_dialog');
					$('#dialog').dialog('open');
					return false;
				});
	$("button, input:submit,").button();	
		});			
