
	jQuery(function() {
		
		
		
		//ezadspro logo opacity
		jQuery(".ez_01, .ez_02, .ez_03, .ez_04").css("opacity", "0.85");
		
		//ezadspro logo opacity hovered
		jQuery(".ez_01, .ez_02, .ez_03, .ez_04").hover(function() {	
			jQuery(this).css("opacity", "1");
		},
		//ezadspro logo opacity un-hovered
		function() {
			jQuery(this).css("opacity", "0.85");
		});
		
		
		//ezadspro small logo opacity
		jQuery(".ez_sm_01, .ez_sm_02, .ez_sm_03, .ez_sm_04, .ez_sm_05").css("opacity", "0.85");
				
		//ezadspro small logo opacity hovered
		jQuery(".ez_sm_01, .ez_sm_02, .ez_sm_03, .ez_sm_04, .ez_sm_05").hover(function() {	
			jQuery(this).css("opacity", "1");
		},
		//ezadspro small logo opacity un-hovered
		function() {
			jQuery(this).css("opacity", "0.85");
		});
		
		
		//other products logo opacity
		jQuery(".ot_01, .ot_02, .ot_03, .ot_04, .ot_05, .ot_06").css("opacity", "0.85");
		
		//other products logo opacity hovered
		jQuery(".ot_01, .ot_02, .ot_03, .ot_04, .ot_05, .ot_06").hover(function() {	
			jQuery(this).css("opacity", "1");
		},
		//other products logo opacity un-hovered
		function() {
			jQuery(this).css("opacity", "0.85");
		});
		
		
		//other products small logo opacity
		jQuery(".ot_sm_01, .ot_sm_02, .ot_sm_03, .ot_sm_04, .ot_sm_05, .ot_sm_06, .ot_sm_07").css("opacity", "0.85");
		
		//other products small logo opacity hovered
		jQuery(".ot_sm_01, .ot_sm_02, .ot_sm_03, .ot_sm_04, .ot_sm_05, .ot_sm_06, .ot_sm_07").hover(function() {	
			jQuery(this).css("opacity", "1");
		},
		//other products small logo opacity un-hovered
		function() {
			jQuery(this).css("opacity", "0.85");
		});
		
						
		//golf thumb opacity
		jQuery(".golf_years li img").css("opacity", "0.5");
		
				//golf thumb opacity hovered
		jQuery(".golf_years li img").hover(function() {
			jQuery(this).css("opacity", "1");
		},
		//golf thumb opacity un-hovered
		function() {
			jQuery(this).css("opacity", "0.5");
		});
		
		
		//heads opacity
		jQuery(".heads li img").css("opacity", "0.7");
				
		//heads opacity hovered
		jQuery(".heads li img").hover(function() {
			jQuery(this).css("opacity", "1");
		},
		//heads opacity un-hovered
		function() {
			jQuery(this).css("opacity", "0.7");
		});
		
		
		
		
		
		
		
		
		
		
		
		
	});
	
	
	
		
		
	
