$(document).ready( function(){
	$("a.fancyboxImage").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	600,
		'autoScale'		:	true,
		'width'			:	600, 
		'overlayShow'	:	true
    });
	
	$("a.fancyboxInline").fancybox({
		'hideOnContentClick': true
	});




 
 $('.cluetip').cluetip({
    splitTitle: '|', // use the invoking element's title attribute to populate the clueTip...
                     // ...and split the contents into separate divs where there is a "|"
    showTitle: false, // hide the clueTip's heading
	positionBy: 'mouse',
	clickThrough:     true
  });

 $('.relatedCluetip').cluetip({
    splitTitle: '|', // use the invoking element's title attribute to populate the clueTip...
                     // ...and split the contents into separate divs where there is a "|"
    showTitle: false, // hide the clueTip's heading
	positionBy: 'mouse',
	clickThrough:     false,
	sticky:           false 
  });
 

});

function setEqualHeight(columns)
 {
 var tallestcolumn = 0;
 columns.each(
 function()
 {
 currentHeight = $(this).height();
 if(currentHeight > tallestcolumn)
 {
 tallestcolumn  = currentHeight;
 }
 }
 );
 columns.height(tallestcolumn);
 }

 










