var lastTarget = null;
	
$(function() {
	$('div.slide').slideUp(0);
	
	$("#accordion li").hover(
		function() {
			$(this).find('div.slide').filter(":not(:animated)").slideDown('fast');
		},
		
		function() {
			$(this).find('div.slide').slideUp('fast');
		}
	);
	
	$("img.rollover").hover (
		function() {
			var src = this.src.substr(0, this.src.length - 4);
			var ext = this.src.substr(this.src.length - 4);
			this.src = src + "_rollover" + ext;
		},
		
		function() {
			this.src = this.src.replace("_rollover", "");
		}
		
	
	)
});


