Cufon.replace('#onelinerDDL span', { fontFamily: 'NeoSans', textShadow: '#444 1px 1px' });
Cufon.replace('#menu a', { fontFamily: 'NeoSans Medium', hover: true });
Cufon.replace('.block h1', { fontFamily: 'NeoSans' });
Cufon.replace('.block h2', { fontFamily: 'NeoSans' });
Cufon.replace('.block h3', { fontFamily: 'NeoSans' });
Cufon.replace('.block h4', { fontFamily: 'NeoSans' });

function silentErrorHandler() {return true;}
window.onerror=silentErrorHandler;


$(function() {
	$('.blockForm input[type=text]').focus(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
	$('.blockForm input[type=text]').blur(function() {
		if ($.trim(this.value) == '') {
			this.value = this.defaultValue;
		}
	});
	$('#shop td').hover(
		function() {
			$(this).addClass('hover');
		}, 
		function() {
			$(this).removeClass('hover');
		}
    );
	$('#shop td').click(
		function() {
			window.location = $(this).find('.details a').attr('href');
		}
	);
	

	$('#suppliers a').attr('target', '_self');
	$('#footer ul a').attr('target', '_blank');
});

