var rangeTables = {
  init : function(){
    $(".showTable").click(this.clickIt);
  },
  clickIt : function(){          
    $("#tableHolder").slideToggle('slow');
  }
};

$(document).ready(function(){
	$("#tableHolder").hide();
	$(".tableTitle").append(" - <a href=\"javascript:;\" class=\"showTable\">click here to see data table</a>");
	rangeTables.init();
	$(".vidLink").click(function () {
		 var movie = 'flv/' + $(this).attr("rel") + '.flv';
		 if(movie != 'none'){
		 $('#vid').flash(
		 { 
           src: 'player.swf',
		   width: 308,
		   height: 265,
		   flashvars: { movieURL: movie },
		   version: 7,
		   wmode: 'transparent'
		 });
       }
       $("#vidWrapper").show();
	   }
	 );
  $("#vidFooter a").click(function () {
	  $("#vidWrapper").hide();
	  $("#vid").html('');
  });
  $("#intContactsList li").click(function () {
	  $(this).children('div').slideToggle('slow');
  });
  $("#intRegionList li").click(function () {
	  $("#intContactsList li[class!=" + $(this).attr("class") + "]").hide('slow');
	  $("#intContactsList li[class=" + $(this).attr("class") + "]").show('slow');
  });

});