
/* === JavaScript for enabling dropDown === */

	var site = function() {
    this.navLi = $('#nav > li').children('ul').css('display', 'none').end();
    this.init();
};


site.prototype = {
    init : function() {
        this.setMenu();
    },
   
    //Enables the slidedown menu, and adds support for IE6

    setMenu : function() {
        this.navLi.hover(function() {
            //mouseover
            $(this).find('> ul').stop(true, true).slideDown(250);
        }, function() {
            //mouseout
            $(this).find('> ul').stop(true, true).fadeOut(200);
        });
    }   
}



$("document").ready(function() {

    $("a[href$='pdf']").prepend("<img src='http://www.hirafoundation.com/imgs/pdf_icon.jpg' /> ");
    
});


$("document").ready(function() {

    
    
});

