$(document).ready(function(){
    $("div.in-side-block ul").each(function(){
        $(this).children("li:last").addClass("last");
    });
});
var img = new Image();
img.src = "../assets/images/loading.gif";
$(document).ready(function(){
    $("#sub-menu a").click(function(){
        $("#sub-menu a").removeClass("active");
        $(this).addClass('active');
        
        target = $(this).attr("href");
        target = target.substring(1);
        $("div.sub").hide();
        $("#" + target).show();
        return false;
    })
});

 $(function () {
    $('.dropdown').each(function () {
        $(this).parent().eq(0).hover(function () {
            $('.dropdown:eq(0)', this).show();
        }, function () {
            $('.dropdown:eq(0)', this).hide();
        });
    });
});