﻿$(document).ready(function() {
   // do stuff when DOM is ready
   
   	// function to add rollover state to menu navigation for browsers like IE6
   	
   	$('#navigation a').hover(function()
   	{
   		$(this).parent().addClass("hover");
   	}, function()
   	{
   	/// and on rollout remove
   		$(this).parent().removeClass("hover");
   	});
   	
   	$('#navigation a').click(function()
   	{
   	
   		$(this).parent().removeClass("hover");
   	});
 
 	
 	$('a.blank').each(function(){
 		$(this).attr({target: "_blank", title: $(this).attr('title') + " - Opens in a new window"});
 	});
 		
 	
 	
 	
 	
 	
 });
