/**
 * RollOver
 */
$(document).ready(function(){
	$("#galleryThumb a img").each(function(){
		var img = $(this);
		img.hover(function(){
				if(jQuery.browser.msie && jQuery.browser.version>6){
					img.fadeTo(0, 0);
				}else{
					img.fadeTo(200, 0);
				}
			}, function(){
				if(jQuery.browser.msie && jQuery.browser.version>6){
					img.fadeTo(0, 1, function(){this.style.removeAttribute("filter");});
				}else{
					img.fadeTo(200, 1);
				}
			}
		);
	});
});

