	$(document).ready(
			function()
			{
				$('.atollon-core').mouseenter(
					function()
					{
						$('.atollon-core').css('background', 'url(/sites/all/themes/atollon/images/bg_prodbar_over.png) repeat-x');
						//$('#core-img').css('opacity', '1.0');
						//$('#core-img').css('filter','alpha(opacity=100)');
					}
				);
				
				$('.atollon-core').mouseleave(
					function()
					{
						$('.atollon-core').css('background', 'url(/sites/all/themes/atollon/images/bg_prodbar.png) repeat-x');
						//$('#core-img').css('opacity','0.7');
						//$('#core-img').css('filter','alpha(opacity=70)');
					}
				);
				
				$('.workshop').mouseenter(
					function()
					{
						$('.workshop').css('background', 'url(/sites/all/themes/atollon/images/bg_prodbar_over.png) repeat-x');
						//$('#workshop-img').css('opacity','1.0');
						//$('#workshop-img').css('filter','alpha(opacity=100)');
					}
				);
				
				$('.workshop').mouseleave(
					function()
					{
						$('.workshop').css('background', 'url(/sites/all/themes/atollon/images/bg_prodbar.png) repeat-x');
						//$('#workshop-img').css('opacity','0.7');
						//$('#workshop-img').css('filter','alpha(opacity=70)');
					}
				);
				
				$('.fisherman').mouseenter(
					function()
					{
						$('.fisherman').css('background', 'url(/sites/all/themes/atollon/images/bg_prodbar_over.png) repeat-x');
						//$('#fisherman-img').css('opacity','1.0');
						//$('#fisherman-img').css('filter','alpha(opacity=100)');
					}
				);
				
				$('.fisherman').mouseleave(
					function()
					{
						$('.fisherman').css('background', 'url(/sites/all/themes/atollon/images/bg_prodbar.png) repeat-x');
						//$('#fisherman-img').css('opacity','0.7');
						//$('#fisherman-img').css('filter','alpha(opacity=70)');
					}
				);
			});
