/*-------------------------------------------------------------------- 
 * JQuery Plugin: "EqualHeights"
 * by:	Scott Jehl, Todd Parker, Maggie Costello Wachs (http://www.filamentgroup.com)
 *
 * Copyright (c) 2008 Filament Group
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Description: Compares the heights or widths of the top-level children of a provided element 
 		and sets their min-height to the tallest height (or width to widest width). Sets in em units 
 		by default if pxToEm() method is available.
 * Dependencies: jQuery library, pxToEm method	(article: 
		http://www.filamentgroup.com/lab/retaining_scalable_interfaces_with_pixel_to_em_conversion/)							  
 * Usage Example: $(element).equalHeights();
  		Optional: to set min-height in px, pass a true argument: $(element).equalHeights(true);
 * Version: 2.0, 08.01.2008
--------------------------------------------------------------------*/

$.fn.equalHeights = function() {
	var Tallest = 0;
	$(this).each(function(){
		if ($(this).outerHeight() > Tallest) { Tallest = $(this).outerHeight();}
	});
	$(this).each(function(){
		var minHeight = Tallest - parseInt($(this).css('border-top-width')) - parseInt($(this).css('border-bottom-width')) - parseInt($(this).css('padding-top')) - parseInt($(this).css('padding-bottom'));
		$(this).css({'min-height': minHeight}); 
	});

	return this;
};

$(function() {
	//Open all file links in new window
	$('a[href*=LinkClick.aspx?fileticket=]').click(function(){
		window.open($(this).attr("href"));
		return false;
	});
	$('#dnn_dnnBreadcrumb_lblBreadCrumb a:last').addClass('current').click(function(){return false});
	
	//Apply Equalize Homepage Feature Box height
	$('#FeatureSection .ProductBlock, #FeatureSection .FeatureBlock').equalHeights();

	$('.Recommendation .column').equalHeights();
	$('.PropertyListing .column').equalHeights();
});
