/**
 * @author Erland Wiencke <erland@apt.no>
 * @since 20090610 
 */

$(document).ready(function(){
	replaceFonts();
});

/**
 * Replaces selected texts with the profile font
 * @return void
 */
function replaceFonts(){
	Cufon.replace('div#content h2, div.article h3, ul.clientlist>li>h3, div.employeelist li h3, ul.clientlist li h4', {fontFamily: 'Locator UltraLight'});
	Cufon.replace('h4, h3.map-desc, div.contact-blurb>div.label, div.menus div.section-menu li:first-child', {fontFamily: 'Locator Light'});
	Cufon.replace('div.contact-blurb>div.phone', {fontFamily: 'Locator Regular'});	
}