function setScreenClass(){ 
	var cls = ( $(document).width() > 1262 ) ? 'wide':'init';
	document.body.className=cls;
	if($('#frm-custom')){
		$('#frm-custom').css('background','#fff url(../img/quoteroof_'+ cls +'.gif) no-repeat top left');		
	}	
};

$(function () {		
	setScreenClass();	
	
	$("#guideform").validate({
		errorPlacement: function(error, element) {
			element.before( error );
		}
	});	

	$("#storeform").validate({
		errorPlacement: function(error, element) {
			element.before( error );
		}
	});
	
	//$('ol.subnav a').click(function() {
	$('ol.subnav a, a.top').click(function() {
		//alert($(this));
		scrollToID($(this).attr("href"));
		return false;
	});	
	
	
});

function scrollToID(id){
	var targetOffset = $(id).offset().top;
	//console.log(targetOffset);
	//console.debug($(id));
	$('html, body').animate({scrollTop: targetOffset}, 500, function() { 
		location.hash = id;
	});
}

window.onresize = setScreenClass;