/* NFOCUS effects */

function initNFOCUS(){

jQuery(':input').focus(function() {
	var inputValue = jQuery(this).attr('title');
	if (jQuery(this).val() == inputValue) {
		jQuery(this).val('');
	}
});
jQuery(':input').blur(function() {
	var inputValue = jQuery(this).attr('title');
	if (jQuery(this).val() === '') {
		jQuery(this).val(inputValue);
	}
});



jQuery(".hoverable").mouseover(function(){
	jQuery(this).addClass("active");
    	}).mouseout(function(){
    jQuery(this).removeClass("active");		
    });

};
