(function($){
	
	$.fn.searchbar = function() {
		$(this).keyup(function(e){
			
		});
		
		// create the ghost
		$(this).addClass('ghost').val('Indtast søgeord');
		
		$(this).focus(function(){
			if ( $(this).val() == 'Indtast søgeord' ) {
				$(this).removeClass('ghost').val('');
			}
		});
		
		$(this).blur(function(){
			if ( $(this).val() == '' ) {
				$(this).addClass('ghost').val('Indtast søgeord');
			}
		});
	}
	
	$(document).ready(function(){
		$("#ctl00_searchbar").searchbar();
	});

})(jQuery);
