$(function() {
	$('a[@rel*=lightbox]').lightBox();
});

jQuery(document).ready(function() {
								
var url = document.URL;
var pathname = url.substring(url.lastIndexOf('/')+1);

switch(pathname)
		{
		case 'sunshine-beach-noosa.html':
			  $('#nav1').unbind();
			  $('#nav1').css("background-position-y" , "-43px");		
		  break;
		case 'sunshine-beach-accommodation.html':
			  $('#nav2').unbind();
			  $('#nav2').css("background-position-y" , "-43px");		
		  break;
		case 'noosa-accommodation-facilities.html':
			  $('#nav3').unbind();
			  $('#nav3').css("background-position-y" , "-43px");		
		  break;
		case 'noosa-accommodation-faqs.html':
			 $('#nav4').unbind();
			 $('#nav4').css("background-position-y" , "-43px");		
		  break;
		case 'sunshine-beach-accommodation-specials.html':
			 $('#nav5').unbind();
			 $('#nav5').css("background-position-y" , "-43px");				 
		  break;
		  case 'sunshine-beach-accommodation-photos.html':
			 $('#nav6').unbind();
			 $('#nav6').css("background-position-y" , "-43px");				
		  break;		
		}	
		
		
		$("#navig table tr td a").blend();
		$("#navig2 table tr td a").blend();
		
});

