$(document).ready(function() {
						   
// EDIT BELOW THIS LINE

	$(".brands img").hover(function() {
		var mySrc = $(this).attr("src");
		mySrcSplit = mySrc.split("_off");
		mySrc = mySrcSplit[0] + "_on" + mySrcSplit[1];
		$(this).attr("src",mySrc);
	},function() {
		mySrc = $(this).attr("src");
		mySrcSplit = mySrc.split("_on");
		mySrc = mySrcSplit[0] + "_off" + mySrcSplit[1];
		$(this).attr("src",mySrc);
	});		
	
	$('#navigation').droppy({speed: 100});
		   
});
