﻿$(document).ready(function() {
    if (navigator.appName == "Microsoft Internet Explorer") {
        $("#logo").hide();
        $("#heading").hide();
        $("#logo").show(2000);
        $("#heading").fadeIn(4000);
    }
    $("#recentposts").hide();
    $("#insideimg").hide();
    $("#recentpoststitle").mouseover(function(event) {
        $("#recentposts").show("slow");
    });
    $("#recentpostsfullarea").mouseleave(function(event) {
        $("#recentposts").hide("slow");
    });
    $("#categories").hide();
    $("#categoriestitle").mouseover(function(event) {
        $("#categories").show("slow");
    });
    $("#categoriesfullarea").mouseleave(function(event) {
        $("#categories").hide("slow");
    });
    $("#insideimg").fadeIn(6000);
});


