///Coded By Peter Scott
////This plugin has been modified for use in this website


(function ($)
{
    jQuery.fn.rollOver = function (options)
    {
        var defaults =
		{
		    offState: "",
		    overState: ""
		};

        var o = jQuery.extend(defaults, options);


        return this.each(function ()
        {
            var e = $(this);
            var l;

            e.mouseenter(function ()
            {
                e.css
                ({
                    "background-image": o.overState
                });
                e.find("h4, a").css("color", "#002354");
            });

            e.mouseleave(function ()
            {
                e.css({
                    "background-image": o.offState
                });
                e.find("h4, a").css("color", "#666666");
            });

            
        });
    };
})(jQuery);
