$(document).ready(function(){
  // need to set clickable area to same size of div
	
//	$('div[@id="welcome"],div[@class=hide-children]').mouseover(
//	  function(){
//	    $(this).addClass("hover");
//	  }
//	);
//	
//	$('div[@id="welcome"],div[@class=hide-children]').mouseout(
//	  function(){
//	    $(this).removeClass("hover");
//	 }
//	);
	
	$('div[@id="welcome"],div[@class=hide-children]').mouseup(
	  function(e){
			// Follow first link in LI
			var toCheck = $('a',this).get(0);
			if(toCheck.target=='_blank') {
			  window.open(toCheck.href);
			} else {
			  window.location = toCheck.href;
			}
      e.stopPropagation();
	  }
	);
	
});
