$(function(){
	$('#trademark').css({
		'cursor': 'pointer'
	}).click(function(event){
		window.location = $(this).find('a').attr('href');
		return event.preventDefault();
	});
	
	$('.input').addClass('clearfix');
	
	$('#search-form .input.text input').click(function(event){
		$(this).val('');
	});
});
