/* Font Sizer */
/* Rob Walker */
/* Requires jquery 1.6.4 */

/* Creates a widget for changing the font size. */
/* IMPORTANT: This is hardcoded for westfallmfg.com */


function initFontSizer() {
	$('#font_size_widget').children('#decrease')
	.click(function(){
		$('#main_content').children('h1, h2, h3, h4, h5, h6, p, ul, ol, dl, table, .caption').each(function(){
			currentFontSize = parseFloat($(this).css('font-size'));
			$(this).css('font-size', Math.floor(currentFontSize-2));
		})
	});
	$('#font_size_widget').children('#increase')
	.click(function(){
		$('#main_content').children('h1, h2, h3, h4, h5, h6, p, ul, ol, dl, table, .caption').each(function(){
			currentFontSize = parseFloat($(this).css('font-size'));
			$(this).css('font-size', Math.floor(currentFontSize+2));
		})
	});
}
