jQuery(document).ready(function($) {
  //setup menu
	$('#nav ul li ul li:odd').addClass('last');
	$('#nav ul li#home_improvements').click(function(){
		var menu_height = 44;
		var sub_menu_height = $('#nav ul li ul').height();
		var new_height = menu_height + sub_menu_height;
		if($("ul",this).hasClass('open')) {
			$("ul",this).removeClass('open');
			$("#header-bg").animate({
				height: 59
			});
			$("#nav ul li ul").animate({
				opacity: 'hide'
			},{
				duration: 0
			});
		}else {
			$("ul",this).addClass('open');
			$("#header-bg").animate({
				height: 235
			});
			$("#nav ul li ul").animate({
				opacity: 'show'
			});
		}			
	});
	//setup image fader
	if( $('.scroll').length ) {
  	$('.scroll').littleScroll({ wrapper: 'scroll-wrap', betweenText: 'view more images'});
	}
	$("a[title=submit]").click( function(){ $(this).parents("form").submit(); });
});
