$(document).ready(function() {
	$('#header-images').cycle({
		fx: 'fade',
		timeout: 5000,
		speed: 1000
	});
	
	$('#nav li a').hover(function(){
		$(this).animate({height: "100"}, { queue:false, duration: 600, easing: 'easeOutBack'})
	},function(){
		$(this).animate({height: "50"}, { queue:false, duration: 600, easing: 'easeOutSine'})
	})
	
	$('#location-submit').css('display', 'none');
	$('form#location-redirect select').change(function() {
		$('form#location-redirect').submit();
		});
});
