$(document).ready(function() {
	if(typeof sIFR == "function"){
		sIFR.replaceElement(named({sSelector:"body h1", sFlashSrc:"http://cdn.yastech.ca/sifr/fonts/georgia.swf", sColor:"#41a7ad", sLinkColor:"#000000", sBgColor:"#FFFFFF", sHoverColor:"#000000", nPaddingTop:0, nPaddingBottom:0, sFlashVars:""}));
	}

	$('form').bind('submit',function(){
		v.validateLocal();
		return v.markErrors();
	});
	$('.areacode,.prefix').bind('keyup',function(){
		if($(this).val().length == 3) {
			if ($(this).hasClass('areacode')) {
				$(this).siblings('input.prefix').focus();
			} else {
				$(this).siblings('input.suffix').focus();
			}
		}
	});	
});