﻿// Functions specific to a site.

(function($) {
	$(document).ready(function() {
		// Place document manipulation code here
		Cufon.replace('h1, h2, h3, .overview-title, .location-title', {fontFamily: 'Helvetica Neue LT Std'});
		Cufon.replace('#mainnavigation ul li a', {fontFamily: 'Swiss 721', hover: true});

		$('#content ul li').wrapInner('<span></span>');		
		
		$('.location-title').click(function (){
			if($(this).hasClass('tab-active')){
				$(this).parent().next('.location-container').animate({'height': '0'}, 600);	
				$(this).removeClass('tab-active');
				$(this).parent().next('.location-container').remove('location-active');
			}
			else {
				$(this).parent().next('.location-container').animate({'height': '440'}, 600);
				$(this).addClass('tab-active');
				$(this).parent().next('.location-container').addClass('location-active');	
			}
		});	
	}); 
})(jQuery);
