jQuery.noConflict(); (function($) { $(function() {
/* <![CDATA[ */

/* ]]> */

//*****************************************************************************************************
// Enabled Javascript Detection
//*****************************************************************************************************
$('html').attr('id', 'js');

//*****************************************************************************************************
// Slideshow
//*****************************************************************************************************
if ($('#slideshow').length) {
$('#slides-outer').cycle({
	pause		:	true,
	speed		:	'slow',
	timeout		:	6000,
	pager		:	'#slideshow__controls',
	pagerAnchorBuilder: function(idx, slide) { 
		// return selector string for existing anchor 
		return '#slideshow__controls li:eq(' + idx + ') a'; 
    }
});
}

//*****************************************************************************************************
// Equal Height Columns
//*****************************************************************************************************
/* function equalHeight(columns) {
	var tallest = 0;
	columns.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	columns.height(tallest);
}
equalHeight($("#l-sidebar-left, #l-mainbar, #l-sidebar-right")); */

//*****************************************************************************************************
// unvisible helper tag for inserting into DOM, preload backgrounds
//*****************************************************************************************************
/* $('<div />', {
	'id'		:		'helper',
	css			:		{
		'width'			: '5000px',
		'height'		: '5000px',
		'position'		: 'absolute',
		'left'			: '-9999em',
		'top'			: '-9999em'
	}
}).appendTo('body'); */

//*****************************************************************************************************
// Not Web-Safe Fonts Embedding
//*****************************************************************************************************
/*
Cufon.set('fontFamily', 'Avanti');
Cufon.replace('#contacts h3, h1, h2');
Cufon.replace('.secondary-nav a', {
	hover: {
		color: "#c86b1a"
	}
});
Cufon.replace('#primary-nav span', {
	fontFamily: "RotondaC"
});
*/

}); })(jQuery);
