$(function() {
	$('#oslink').click(function() {
		window.open(this.href);
		return false;
	});

	$('#searchq').attr('first', true).focus(function() {
		if ($(this).attr('first'))
			$(this).removeAttr('first').removeClass('untouched').val('');
	});

	$('#prodcats ul li a').contents().css('cursor', 'hand').click(function() {
		location.href = $(this).closest('a').attr('href');
		return false;
	});

	$('#products #prod a').contents().css('cursor', 'hand').click(function() {
		location.href = $(this).closest('a').attr('href');
		return false;
	});
});
