$( document ).ready( function(){
	$('.blink')
		.focus(function(){
			if ( $(this).attr('value') == $(this).attr('title') ) {
				$(this).attr({ 'value': '' })
			}
		})
		.blur(function(){
			if ( $(this).attr('value') == '' ) {
				$(this).attr({ 'value': $(this).attr('title') })
			}
		})
		
	$('#navigation ul li').hover(function () {
		$(this).addClass('hover');
		$(this).find('.dropdown').show();
	}, function () {
		$(this).removeClass('hover');
		$(this).find('.dropdown').hide();
	})
	
	if ($.browser.msie && $.browser.version.substr(0,1)<7) {
		DD_belatedPNG.fix('#footer .copy');
	};
});
