(function($){
	$(document).ready(function(){ 
	    
	    //PNG FIX for IE6
	    if($.browser.msie && $.browser.version.substr(0,1) == 6 ){
	        DD_belatedPNG.fix('.shell, #header ul.social li a, h1#logo a, #main .intro .slogan,#main .intro .start p.button a, #main .sidebar .head span.rss a, #main .sidebar .head span.twitter-icon a  ')
	    }
	    
	    $(document).find('.sidebar > ul > li.widget:last').addClass('last');
	    $(document).find('#footer .copy > ul > li:last span').remove();
	    
	    $('#navigation > ul > li').hover(
			function(){
				$(this).find('> .sub-menu').show();
			},
			function(){
				$(this).find('> .sub-menu').hide();
			}
		);
		$('#navigation > ul > li > ul > li').hover(
			function(){
				$(this).find('> .sub-menu').show();
			},
			function(){
				$(this).find('> .sub-menu').hide();
			}
		);
	    
	    $(function(){
            $('.blink').
                focus(function() {
                    if(this.title==this.value) {
                        this.value = '';
                    }
                }).
                blur(function(){
                    if(this.value=='') {
                        this.value = this.title;
                    }
                });
        })
	});
})(jQuery)
