DD_roundies.addRule('.tab a', '6px 6px 0 0');


jQuery.noConflict();

/***
jQuery('#jquery-equal-height-example p').equalHeight();
***/
jQuery.fn.equalHeight = function () {
	var height		= 0;
	var maxHeight	= 0;

	// Store the tallest element's height
	this.each(function () {
		height		= jQuery(this).outerHeight();
		maxHeight	= (height > maxHeight) ? height : maxHeight;
	});

	// Set element's min-height to tallest element's height
	return this.each(function () {
		var t			= jQuery(this);
		var minHeight	= maxHeight - (t.outerHeight() - t.height());
		var property	= jQuery.browser.msie && jQuery.browser.version < 7 ? 'height' : 'min-height';

		t.css(property, minHeight + 'px');
	});
};



		jQuery(document).ready(function() {
										
			jQuery('.box').equalHeight();
			jQuery('.box .image').equalHeight();
			jQuery('.box .description').equalHeight();

			
			var blockwidth = (jQuery('#container').width() - jQuery('#headerContainer').width()) / 2;
			jQuery('.overflower').css('width',blockwidth + 'px');
			jQuery('.overflower').css('right','-' + blockwidth + 'px');
			
			jQuery('.overflowerFooter').css('width',blockwidth + 'px');
			jQuery('.overflowerFooter').css('right','-' + blockwidth + 'px');
			//alert(blockwidth);
			
//			equalHeight($(".box"));
	//		$('.box').equalHeights();
	


			
   		});
		
		
