/**
 * Remmert dekkers
 */
(function ($) {
	$(document).ready(function() {
		// IE Hacks/fixes

		// fix clear voor de clear:both (voor ie7 en lager)
		if ($.browser.msie) {
			if ($.browser.version <= 7 || document.documentMode <= 8) { // IE6, IE7 of IE8-in-IE7-mode?
				$('.clear').after('<div style="width: 1px;height: 1px"></div>');
			}
		}
		$('.searchbox input[type=text]').focus(function (){
			if ($(this).val() == EMPTY_SEARCH_VALUE ) {
				$(this).val('');
			}
		}).blur(function () {
			if ($(this).val() == '' ) {
				$(this).val(EMPTY_SEARCH_VALUE);
			}
		});
	});
})(jQuery);
