jQuery.noConflict();
function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = jQuery(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
jQuery(document).ready(function() {
	equalHeight(jQuery(".column"));
	equalHeight(jQuery(".equal-region"));
	equalHeight(jQuery(".top-equal-region"));
	equalHeight(jQuery(".qg-grid-box"));
	equalHeight(jQuery(".qg-grid-box p"));
	equalHeight(jQuery(".product-grid-box h3"));
	equalHeight(jQuery(".product-grid-image"));
	equalHeight(jQuery(".product-grid-box"));
	jQuery('#horizontal-nav ul li a').corner("top 7px");
	jQuery('#horizontal-nav ul li.home a').uncorner();
	jQuery('.rounded').corner();
	jQuery('.rounded-form').corner("top");
});