$(document).ready(function(){

    // Header drop-down navigation
    
    $("#header li[id!='']").hover(function(){
        $(this).addClass('selected').children('ul').show();
    }, function(){
        $(this).removeClass('selected').children('ul').hide();
    });
    
    $('.gallery #content .editorial li p').hover(function(){
        $(this).parent().addClass('selected');
    }, function(){
        $(this).parent().removeClass('selected');
    });
    
	// PNG fix for ie6
    $(".png").pngfix();
    
	// Search box click to clear
    $('#header #frm-search-box').focus(function(){
        if (this.value == 'Search this site') {
            this.value = '';
        }
        
    });
	
	$('.links li:last-child').addClass('last');
    
    //$('.news-image').append('<img class="overlay" src="/media/images/img-overlay.png" width="245" height="245"/>');
    
});

