$(function() {
	if($('#contactForm').size()) {
		$('#contactForm [title]').tipsy({
			gravity: 'w',
			fade: true
		});
	}
	
	if($('#fpiContent').size()) {
		$('a.contentHandle').click(function(evt) {
			evt.preventDefault();
			$(this).toggleClass('active');
			$(this).next('div.contentBox').slideToggle();
			return false;
			
		});
	}
	
	$("#twitterTabs").tabs({
		cache: true,
		cookie: { expires: 7 },
		ajaxOptions: {
			error: function( xhr, status, index, anchor ) {
				$( anchor.hash ).html("Sorry, I couldn\'t load this tab. We\'ll try to fix this as soon as possible. ");
			}
		}
	});
	
	
	var fbUrl = (("https:" == document.location.protocol) ? "https://" : "http://") + "connect.facebook.net/en_US/all.js";
	window.fbAsyncInit = function() {
		FB.init({
			appId: '201489819883589',
			status: true,
			cookie: true,
			xfbml: true});
	};
	(function() {
		var e = document.createElement('script');
		e.async = true;
		e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
		document.getElementById('fb-root').appendChild(e);
	}());
	
});

