//$(document).ready(function(){
//$(".fadeThisHeader img").fadeTo("fast", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
//
//$(".fadeThisHeader img").hover(function(){
//$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
//},function(){
//$(this).fadeTo("fast", 0.6); // This should set the opacity back to 60% on mouseout
//});
//});// JavaScript Document



//
//
//$('.fadeThisHeader img').customFadeTo('slow', 0.6, function() {
//   //no more fiddling with attributes here
//});
//
//(function($) {
//	$.fn.customFadeIn = function(speed, callback) {
//		$(this).fadeIn(speed, function() {
//			if(jQuery.browser.msie)
//				$(this).get(0).style.removeAttribute('filter');
//			if(callback != undefined)
//				callback();
//		});
//	};
//	$.fn.customFadeTo = function(speed, opacity, callback) {
//		$(this).fadeOut(speed, opacity, function() {
//			if(jQuery.browser.msie)
//				$(this).get(0).style.removeAttribute('filter');
//			if(callback != undefined)
//				callback();
//		});
//	};
//})(jQuery);