// JavaScript Document

$(document).ready(function(){

	/* ---------------------
		Using Javascript to enable Locations Nav dropdown 
		--------------------- */
	$('#mainNav .locations').parent('li').hover(function(){
		$(this).addClass('on');
		$('ul', this).show();
	}, function(){
		$(this).removeClass('on');
		$('ul', this).hide();
	});
	$('#mainNav li a.locations').click(function(){
		return false;
	});
	
	/* ---------------------
		Switch off otherLocation selector with button OFF when javascript is turned ON. 
		--------------------- */
	$('#otherLocation').hide();
	$('#otherLocationJS').show().css({'visibility':'visible'});
	
	/* ---------------------
		Add transparency hover on homepage links.
		--------------------- */
	$('.home a.viewDetails').hover(function(){
		$(this).parent('.gridCol').css({'opacity': 0.8});
	}, function(){
		$(this).parent('.gridCol').css({'opacity': 1});
	});
	
	
});

function goTo(select){ 
	var index=select.selectedIndex;
	if (select.options[index].value != "0") {
		location=select.options[index].value;
		}
}

