jQuery( document ).ready( function($){
		$('#navigation ul li').hover(function() {
			$(this).addClass('hover');
			$(this).find('.dropdown').show();
		}, function () {
			$(this).removeClass('hover');
			$(this).find('.dropdown').hide();
		});
		$('.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') })
				}
			})
		if ($.browser.msie && $.browser.version.substr(0,1)<7) {
			if ($.browser.msie && $.browser.version.substr(0,1)<7) {
			DD_belatedPNG.fix('#navigation ul li .dropdown .cnt, #navigation ul li .dropdown .dropdown-bottom, .main-bg, #main-bottom, .home-main .main-bg, .home-main #main-bottom, .social-row, .home-box-top, .home-box-cnt, .footer-logo, .small-social-holder .social-row, #header-holder,#header-holder .shell ');
			};
		};
		$('.reveal-link').live('click', function () {
			$(this).parents('#wrapper').find('.reveal-box').slideToggle();
		})

	});
