var doubleCallFix = false;
$(document).ready(function() {
	if (!doubleCallFix) {
		doubleCallFix = true;
		if ($.browser.msie && jQuery.browser.version == '6.0') {
			$('#content > div.container > p').each(function() {
				$(this).css('margin', '0');
				$(this).css('padding', '0');
			});
			var url = location.href; 
			if (url.match(/.*\/o-que-fazemos\/.*/) != null) {
				$('#content > div.container > p > strong').each(function() {
					$(this).css('margin-top', '40px');
					$(this).css('color', '#f7941e');
				});	
			}
			else if (url.match(/.*\/contato\/.*/) != null || url.match(/.*\/quem-somos\/.*/) != null) {
				$('#content > div.container > p > strong').each(function() {
					$(this).css('margin-top', '40px');
					$(this).css('color', '#8cc63f');
				});
			}
			else {
				$('#content > div.container > p > strong').each(function() {
					$(this).css('margin-top', '40px');
					$(this).css('color', '#00b7ce');
				});
			}
			$('#content > div.container > p + p').each(function() {
				$(this).css('margin-top', '30px');
				$(this).css('color', '#9A9894');			
				$(this).css('line-height', '18px');				
			});
		}		
	}
});

