jQuery(document).ready(function(){

	jQuery('a.fill').each(function(){

		var thiz = jQuery(this),
			prnt = thiz.parent();
			
		//this outerheight minus this height gives the width 
		//	of the top and bottom border combined because there
		//	is no padding or margin on the element in the css
		var borders = thiz.outerHeight() - thiz.height();
		
		thiz.height( prnt.height() - borders );
	});

	setTimeout(function(){
	
		var thiz = jQuery('.row.middle .container a.fill'),
			prnt = thiz.parent(),
			borders = thiz.outerHeight() - thiz.height();
			
		thiz.height( prnt.outerHeight() - 30 );
		
	}, 2000);

});
