$(function() {
	$('a[href=\\#]').click(function() {
		return false;
	});

	$('.click-box').css('cursor', 'pointer').click(function() {
		var href = $('a:eq(0)', this).attr('href');
		if (href != '#') location.href = href;
	});

	$.watermark.options.className = 'watermark';
	$('.watermarked').each(function() {
		$(this).watermark($(this).attr('title'));
	});
	
	$('select').change(function() {
		if ($(this).val() == '') $(this).addClass('watermark'); else $(this).removeClass('watermark');
	});
});