$(document).ready(function() {
    $('div[class^=search-] input[name=keyword]').each(function (i) {
        $(this).click(function () {
            if($(this).attr('defaultvalue') == $(this).attr('value')) {
                $(this).attr('value', '');
            }
        });
    });
	
	
	var refnumber = $('input[id=wmtext_refnumber]');
	if(refnumber) {
		currentTime = new Date();	
		refnumber.attr('value', 'ENO-' + currentTime.getFullYear() + '-' + parseInt(currentTime.getMonth()+1) + '-' + currentTime.getDate() + '-' + currentTime.getHours() + currentTime.getMinutes() + currentTime.getSeconds());
	}
});






