//---------
// GLOBALS
//---------

var TFS = {};


//-----------
// FUNCTIONS
//-----------

$(document).ready(function() {

	
	//-------------------------
	// DECORATIVE & FUNCTIONAL
	//-------------------------
		
	/*
	 * Add .last and .first to LI
	 */
	$('ul li:last-child').addClass('last');
	$('ul li:first-child').addClass('first');
		
	/*
	 * Wrap HR with div
	 */
	$('hr').wrap('<div class="hr"></div>');

	/*
	 * Remove the bottom margin of the last P in the content
	 */
	$('#contentMain > p:last-child').addClass('last');
	
	//-------------	
	// INTERACTIVE
	//-------------

	/*
	 * Slideshow
	 */
	
	if($('#slideshow').length > 0) 
	{	
		$('#slideshow ul').cycle(
		{
			fx: 'fade',	
			timeout: 10000,
			pause: true
		});	
	}

	/*
	 * Fancybox
	 */
	
	$("a.popup").fancybox();
	
	//----------
	// CLEAN UP
	//----------
	
		
});



