window.addEvent('domready', function() {

/********************************************************

        C C C C         X     X   S S S  V           V
      C         C        X   X   S     S  V         V
     C    CCC    C        X X    S         V       V
    C    C        C        X      S S S     V     V
     C    CCC    C        X X          S     V   V
      C         C        X   X   S     S      V V
        C C C C         X     X   S S S        V


 Created by Josh Reid @ XSV for Hot Mustard Copyright 2008 

*********************************************************/
	zoomText('');
	
	// SmoothScroll
	/*var smoothlyScroll = new SmoothScroll({
		links: 'a.smoothly'
	});*/
	
});

function zoomText(size)  
{     
	var fontsz; 
	
	if (size == '') {
		// Get the Cookie
		var fontsz = Cookie.read('site_font_size',fontsz) ? Cookie.read('site_font_size',fontsz) :'';
	}
	else
	{
		var fontsz = size;
	}
	
	if (fontsz != '') {
		// Change body text size     
		$(document.body).setStyle('font-size', fontsz);
		// Set the Cookie
		Cookie.write('site_font_size',fontsz);
	}  
} 
