jQuery(document).ready(function() {
    var options = {
	styleClass: "selectDark",
	jScrollPane: 1,
	speed: "fast"
	}
    jQuery(".jquery-skin").styleSelect(options);
    jQuery("#event-list tr").hover(
		function () { jQuery(this).stop().animate({ "background-color": "#FFF8DC;" }, "slow"); },
		function () { jQuery(this).stop().animate({ "background-color": "#fff;" }, "slow");
		});
    jQuery("#artist-list tr").hover(
		function () { jQuery(this).stop().animate({ "background-color": "#FFF8DC;" }, "slow"); },
		function () { jQuery(this).stop().animate({ "background-color": "#fff;" }, "slow");
		});
    jQuery(".fade-image").css({ opacity: 0.7 }).hover(function() {
		jQuery(this).animate({ opacity: 1 }); },
		function() { jQuery(this).animate({ opacity: 0.7 });
		});
    jQuery("#search").hover(
		function () { jQuery(this).stop().attr('src', '../images/go-button_orange.png'); },
		function () { jQuery(this).stop().attr('src', '../images/go-button.png');
		});
});
