(function($){

$(document).ready(function(){
	
	$('.bar').each(function() {
		var bar = $(this);
		if ($(this).find('.bar-inner').length) {
			$(this).find('.bar-inner').css('height',(bar.parent().height() + 30) + 'px');
		} else {
			$(this).css('height',$(this).parent().height() + 'px');
		};	
	});
});

})(jQuery)
