$j(document).ready(function(){
    if ($j('body').attr('id') == 'contact') {
	    $j('body#contact p').addClass('large');
	} else if ($j('body').attr('id') == 'tariff') {
	   $j('body#tariff p').addClass('large');
				$j('body#tariff li').addClass('large');
	} else if ($j('#content').hasClass('violin')) {
	   $j('#content p').addClass('large');
	} else {
		if ($j('#page_text')) {
			$j('#page_text p:first').addClass('large');
		}
		
		if ($j('#cont_text')) {
			$j('#cont_text p:first').addClass('large');
		}
	}
				
	if ($j('form')) {
		var form = $j('form');
		var breaks = form.find('br');
		breaks.each(function(){
			$j(this).remove();
		});
		var textareas = form.find('textarea');
		textareas.each(function(){
			$j(this).removeAttr('rows');
			$j(this).removeAttr('cols');
		});
	}
});
