$(document).ready(
	function(){
		$(".cmsFadeButton").fadeTo(300, 0.5);
		$(".cmsFadeButton").hover(
			function(){
				if ($(this).queue().length == 0){
					$(this).fadeTo(300, 1.0);
				};
			},
			function(){
				if ($(this).queue().length <= 1){
					$(this).fadeTo(300, 0.5);
				};
			}
		);
	}
);
