﻿///// <reference path="jquery-1.3.2.js" />

String.prototype.format = function() {
    var pattern = /\{\d+\}/g;
    var args = arguments;
    return this.replace(pattern, function(capture) { return args[capture.match(/\d+/)]; });
}

var J = jQuery.noConflict();

J(document).ready(function() {
    J('.sub-menu-header-item').mouseover(function() {
        J('ul', this).fadeIn('fast');
    });

    J('.sub-menu-header-item').mouseleave(function() {
        J('ul', this).fadeOut('fast');
    });
});





