$(function(){	
	if(!$.browser.msie || $.browser.msie && $.browser.version > 6){
	    $('#content .date_selection_form .textfield input').each(function(){
    		var $title_elm = $(this).closest('.view').find('.subtitle');

    		monta_fade_input_label($(this), $title_elm);
    		$(this).change(function(){
    			monta_fade_input_label($(this), $title_elm);
    		});
    		$(this).keyup(function(){
    			monta_fade_input_label($(this), $title_elm);
    		});
    	});
	}
});
