/*
	Fix corners for the unlucky users of IE7/8
 */
function initCorners() {
	if($.browser.msie && $.browser.version.substr(0,1)>5 || !$.browser.msie) {
		$('#header ul li a').corner('8px');
		$('body.thin #product-nav li.left').corner('12px tl').corner('12px bl');
		$('body.fat #product-nav li').corner('12px tl').corner('12px bl');
		$('body.thin #product-nav li.right').corner('12px tr').corner('12px br');
		$('#footer, #content').corner('15px');
	}
}

function initFormValidation() {
	
	$("form").validate();

}

function initLightbox() {
	$('ul.gallery a.img').lightBox();
	$('ul.finishes a').lightBox();
	$('.lb').lightBox();
}
