function initNav() {

    $(".nav .nav-item").hover(
        function (e) {

            if(!jQuery(".sub", this).is(":animated")) {

                jQuery(".sub", this).slideDown('slow');
            }
        },
        function (e) {

            jQuery(".sub", this).slideUp('slow');
        }
    );
}

$(document).ready(function() {
    initNav();
    $('textarea.expanding').autogrow();
    $('.content a.enlarge').lightBox({fixedNavigation:true});
});

jQuery(function($){
	$(document).ready(function(){
		if(($.browser.msie)&(parseInt($.browser.version)<7)){
			$("img[src$='.png']").each(function(){$(this).addClass("png");});
		}
	});
});