$(document).ready(function() {
	$('#select').click(function() { 
		$('#hidden-select').slideToggle('fast');
	});
	$('#hidden-select ul li').click(function() {
		document.location = $(this).children().attr('href');
	});
	$('#menu a img').hover(
		function() {
			this.src = this.src.replace("-on","-off");
		},
		function() {
			this.src = this.src.replace("-off","-on");
		}
	);
});

