google.load("jquery", "1.3.2");
google.load("jqueryui", "1.7.2");


google.setOnLoadCallback(function() {



	// header link images
	$(".hdr a img").each(function() {

		// image preload - http://www.mattfarina.com/2007/02/01/preloading_images_with_jquery
		jQuery("<img>").attr("src", "/i/img/" + $(this).attr("class") + "Hl.png");


		// store for future, so even if the default state is underline, it is preserved
		$(this).data("originalImgSrc", $(this).attr("src"));

		$(this).hover(function() {
			$(this).attr("src", "/i/img/" + $(this).attr("class") + "Hl.png");
		}, function() {
			$(this).attr("src", $(this).data("originalImgSrc"));
		
		});
		
	});
	

// begin works hdr - kala
//	$(".hdrNav").hide();
	
/*
	$(".hdr").hover(function() {
		$(".hdrNav").fadeIn("fast");
	});

	$(".hdr").click(function() {
		$(".hdrNav").fadeIn("fast");
		
	});

	
	$(".hdr").mouseleave(function() {
		$(".hdrNav").fadeOut("fast");
	});
*/
// end works hdr

});