/*      NICE TO SEE YOU!
 * Code by Rolf, Håkon and Tobias 
 * at Powow AS - http://powow.no
 *     twitter.com/powow
 *  A big thank you to jQuery!
 *******************************/

$(document).ready(function(){
	/* This had to be done quick.
	   So we inject spans in our sub-menus to prettify them
	   while being nice to people with poor browsers
	   (i'm looking at you, IE) */
	$("ul#subnav a").append("<span></span>");
	
	/* Make linked images absolutely gorgeous */
	$("a img").hover(
		function () {
        	$(this).fadeTo("slow", 0.5);
      	}, 
      	function () {
        	$(this).fadeTo("fast", 1);
      	}
	);	
});
