// Jjquery
$(function(){
	
// Hitghlioght active form fields when input is focused
	$('a.newwintrue').click(function(e) {
		e.preventDefault();
		window.open($(this).attr('href'));
	});
	
	$('form.standard input, form.standard textarea, form.standard select').focus(function(){
		$(this).parents('p.field').addClass('focus');										
	})
	$('form.standard input, form.standard textarea, form.standard select').blur(function(){
		$(this).parents('p.field').removeClass('focus');										
	})

})
