// ethan@waveriderdesign.com 6.11.2008 - PROJ-JSCRIPT
// ethan@waveriderdesign.com 6.13.2008 - PROJ-REVIEWS
// ethan@waveriderdesign.com 8.13.2008 - PROJ-ALL-REVIEWS

$(document).ready(function() { 
	$('#product-reviews-write-submit').click(function() {
	  validateForm('product-reviews-write');
	  return false;
	});
	$('#reviews-wrapper input, #reviews-wrapper textarea').focus(function() {
	  $(this).addClass('focused');
	}).blur(function() {
	  $(this).removeClass('focused');
	});
});