
$(document).ready(function() {
	

      // bind change event to select
      $('#region').bind('change', function () {
          var url = $(this).val(); // get selected value
          if (url!='') { // require a URL
	          $('body').delay(0).fadeTo('slow',0.2);
              window.location = url; // redirect
          }
          return false;
      });
      
      
		$('.downloads li').mouseover(function() {
			 $('.downloads li').each(function(index) {
				$(this).stop();
				$(this).delay(0).fadeTo('slow',0.75);
			});
			$(this).stop();
			$(this).delay(0).fadeTo('slow',1);
		});
		$('.downloads li').mouseout(function() {
			$('.downloads li').each(function(index) {
				$(this).stop();
				$(this).delay(0).css('visibility','visible').fadeTo('slow',1);
			});
		});
		
		
		      
      
      
});
