(function($){

	$('#footer a:last').addClass('last');
  $('#footer_nav > li:last-child a').addClass('last');
	$('#header_links li:last').addClass('last');
	
	$('.ngg-navigation:last').addClass('last');

	/*
	
		Fix the home find us margin to match
		the insurance box
	
	*/
	
  if($('#home_section').length){

    var height = $("#sidebar").outerHeight();
    /*
      If the sidebar is too small make the #inner large enough
    */
    if(height < 600) {
      height = 600;
    }

    $('.home #inner').css({'height': height + 'px'});
    $('.home #content').css({'position': 'absolute', 'bottom': '0', 'left': '0'});

  }

	/*
		
		Slider

	*/

	if($('#slider').length){
		
		$('#slider').nivoSlider({
	        effect: 'random',
	        slices: 15,
	        animSpeed: 500,
	        pauseTime: 3000,
	        directionNav: true,
	        directionNavHide: true,
	        controlNav: true
	    });
		
	}
	
	if($('.gallery').length){
		
		$('.gallery li:nth-child(3n)').addClass('end');
			
	}
	
	$("a.fancy").fancybox({
		'titlePosition'	: 'inside'
	});

})(this.jQuery);

