// JavaScript Document

function xtractFile(data){
var m = data.match(/(.*)\/([^\/\\]+)(\.\w+)$/);
if(m == null) { m = "null"; }
return {path: m[1], file: m[2], extension: m[3]}
}

jQuery(window).load(function() {
	//alert ("test");					
	
	// give 2 website columns equal heights
	jQuery(".column").equalHeights();
	
	//putting margins on first call to action panel on home page 
	i = 0;
	jQuery(".grey_home_box").each( function(i){
		i % 2 == 0 ? jQuery(this).addClass("margin0px") : jQuery(this).addClass("margin10px");
	});
});
