// Global JavaScripts

$(function(){
	// Make form rows highlightable 
	$('.form .focusable').focus(function(){
		$(this).parents('.formRow').addClass("selected");
	}).blur(function(){
		$(this).parents('.formRow').removeClass("selected");
	});
});