$( document ).ready( function(){
	if ($.browser.msie && $.browser.version.substr(0,1)<7) {
		DD_belatedPNG.fix(' h1#logo a ,.header-img ,#header ,.header-shadow ,.footer-shadow , #footer .shell ');
	};
	
	$('.blink')
		.focus(function(){
			if( $(this).val() == $(this).attr('title') ) {
				$(this).val('');
			}
		}).blur(function(){
			if( $(this).val() == '' ) {
				$(this).val( $(this).attr('title') );
			}
		});
		
	$('#navigation ul li').hover(
		function(){
			$(this).find('a').eq(0).addClass('active');
			$(this).find('.dd').show();
			var width = $(this).find('.dd ul li').width();
			var num_dd = $(this).find('.dd-showed').length;
			if (num_dd) {

			} else
			{
				$(this).find('.dd').width(width);
				$(this).find('.dd ul').width(width);
				$(this).find('.dd ul li').width(width);
				$(this).find('.dd ul li a').width(width);
				$(this).find('.dd').addClass('dd-showed');
			}
			;
		}, 
		function(){
			$(this).find('a').eq(0).removeClass('active');
			$(this).find('.dd').hide();
		}
	);
	
});

