;(function($){
	$(document).ready(function(){
		$('img','#homeImg').fadeIn('slow');		
		$('#menu option:eq(0)').attr('selected','selected');
		$('#menu').bind('change',function(){
			if($(this).val().length > 0) {
				window.location.href = $(this).val();
			}
		});
	});
})(jQuery);
