// JavaScript Document
$(document).ready(function() { 
						   
	$("#sidebar .rollover").each(function() { 
		
		$(this).mouseover(function(){
			var src = $(this).attr("src").replace("_normal", "_over");
			$(this).attr("src", src);
		}).mouseout(function(){
			var src = $(this).attr("src").replace("_over", "_normal");
			$(this).attr("src", src);
		});
	});	
	
	$('#sidebar > ul').superfish({autoArrows: false});
	
	/*$('#sidebar > ul').supersleight({shim: 'http://helixdc/Action%20Pest%20Control/Build/images/interface/spacer.gif'});*/
	
});
