
// This hides the left hand menu

$(document).ready(function() {
						 
						 
 $( function(){
	// Add txt icons to document links (doc, rtf, txt)
	$("a[href$='.doc'], a[href$='.txt'], a[href$='.rft']").addClass("txt");
	
	// Add pdf icons to pdf links
	$("a[href$='.pdf']").addClass("pdf");
	
	$('a').filter(function() {
		//Compare the anchor tag's host name with location's host name
	    return this.hostname && this.hostname !== location.hostname;
	  }).addClass("external").attr("target", "_blank");
 });
 
 
$(document).ready(function(){
  $('p.glow a, p.glow2 a ')
    .css({ 'backgroundPosition': '0 0' })
	.hover(
      function(){
        $(this).stop()
          .animate({
            'opacity': 0
          }, 650);
	  },
	  function(){
        $(this).stop()
          .animate({
            'opacity': 1
          }, 650);
	  }
	);
});
 
 


$( function(){

$("table.table tbody tr:even").addClass("odd");

$("table.table tbody tr:odd").addClass("even");

});

//start -- from email ----

$(".accordion2 div.accord").hide();

$("h3.accordionh3").click(function(){

$(this).next(".accordion2 div.accord").slideToggle("slow");

});


$("h3.accordionh3").click(function(){

$(this).next(".accordion3 div.accord").slideToggle("slow");

$(this).toggleClass("active");

});

});

