        $(document).ready(function(){
            	var thisfile = document.location.toString().replace(/^.*[\/\\]/g, '');
                $('#nav li').each(function() {
			var href = $(this).children('a').attr('href');
			if ( thisfile == href ) { $(this).addClass('active'); }
  		});
                
                $("ul.dropdown li ul").hide();
                
                function hov_open()     { $('ul:first',this).show(); }
                function hov_close()    { $('ul:first',this).hide(); }
                var config = { over: hov_open, timeout: 300, out: hov_close };
                $("ul.dropdown li").hoverIntent(config);
		
		$('.blog_intro').toggle(function() {
			$(this).next('.blog_text').slideDown();
			$('.blog_thumb', this).hide();
		 }, function() {
			$(this).next('.blog_text').slideUp();
			$('.blog_thumb', this).show();
		 });
        })
