


//-----------------------------------------------
//	forms
//-----------------------------------------------
$(document).ready(function () {
									 
	if(jQuery.browser.mozilla) {
		$('form.cmxform').hide().find('label:not(.nocmx)').each(function(){
			var $labelContent = $(this).html();
			var $labelWidth = $(this).css('width');
			$(this).empty();
			$(this).append('<span style="display: block; width: '+$labelWidth+';">');
			$(this).prepend('</span>');
			$(this).css('display', '-moz-inline-box');
			$(this).find('span').html($labelContent);
			$('form.cmxform').show();
		});
	};           
	
	
	$('form.cmxform input').focus (
		function () {
			$(this).addClass('focus');
		}
	);
	
	$('form.cmxform input').blur (
		function () {
			$(this).removeClass('focus');
		}
	);
	
	$('form.cmxform textarea').focus (
		function () {
			$(this).addClass('focus');
		}
	);
	
	$('form.cmxform textarea').blur (
		function () {
			$(this).removeClass('focus');
		}
	);
									 
});