/**
 * @author denodell
 */

window.onload = function() {
	if (!(/MSIE 6/.test(navigator.userAgent))) {
		$('body').addClass('loaded');
	}
};

$(function() {
	if ((/MSIE 6/.test(navigator.userAgent))) {
		$('body').addClass('loaded');
	}
});

var JK = {}

JK.Search = new function() {
	$(function() {
		var searchBox = $("#sidebar .search-box");
		if (searchBox.size() >= 1) {
			if ($.trim(searchBox.val()) != "") {
				searchBox.addClass('populated');
			}
			searchBox.blur(function() {
				if ($.trim(searchBox.val()) != "") {
					searchBox.addClass('populated');
				} else {
					searchBox.removeClass('populated');
				}
			});
			searchBox.focus(function() {
				searchBox.addClass('populated');
			});
		}		
	});
}();