jQuery(document).ready(function() { 

	//DropDown Sub-Navigation
	jQuery('ul.sf-menu').supersubs({ 
            minWidth: 10,
            maxWidth: 50,
            extraWidth: 1
		}).superfish({
			autoArrows: false,
			dropShadows: false, 
			delay: 400,
			animation: {opacity:'show',height:'show'},
			speed: 250
		}).find('ul').bgiframe();
	
	
	
	jQuery('.mainRow').each(function(i,e){
		jQuery(this).children('.column').equalHeights();
	});

	jQuery('.subRow').each(function(i,e){
		jQuery(this).children('.column').equalHeights();
	});

}); 
