// DOM ready
$(document).ready(function(e){
	
	// Assign css width/height to specially classed divs
	$("div[class*='jq-width-']").each(function(){
		var dim_data = $(this).attr('class').match(/jq\-width\-(\d+)/);
		$(this).css('width',dim_data[1]+'px');
	});

	// Assign css width/height to specially classed divs
	$("div[class*='jq-height-']").each(function(){
		var dim_data = $(this).attr('class').match(/jq\-height\-(\d+)/);
		$(this).css('height',dim_data[1]+'px');
	});
	
	// Set up form validation
	$('.req').siblings('label').append(" *");
	
	// equalize column heights
	$('.home-bottom-box').equalHeights();
	
	// Rounded corner madness
	DD_roundies.addRule('.contact-info', '10px', true);
	DD_roundies.addRule('#nav', '10px', true);
	DD_roundies.addRule('.home-bottom-box','10px');
	
});

// onload
$(window).load(function(e){
	
});