$(document).ready(function() {

	// General select colors (blue hover, red active) 

	var filename;

	$(".select").hover(function() {
		if( $(this).attr("rel") != "active" ) {
			filename = $(this).attr("src").split(".png");
			$(this).attr("src", filename[0] + "_hover" + ".png");
		}
	}, function() {
		if( $(this).attr("rel") != "active" ) {
			filename = $(this).attr("src").split(".png");
			filename[0] = filename[0].replace("_hover", "");
			$(this).attr("src", filename[0] + ".png");
		}
	});





});
