function doClear(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = ""
	}
}

$(document).ready(function(){

    $("#python-gallery").hover(
        function () {
            $(this).attr('src',"/images/python-gallery-active.jpg");
        },
        function () {
            $(this).attr('src',"/images/python-gallery.jpg");
        }
    );

    $("#gallery-bank-quay").hover(
        function () {
            $(this).attr('src',"/images/gallery-bank-quay-active.jpg");
        },
        function () {
            $(this).attr('src',"/images/gallery-bank-quay.jpg");
        }
    );

    $("#gallery-cargo-fleet").hover(
        function () {
            $(this).attr('src',"/images/gallery-cargo-fleet-active.jpg");
        },
        function () {
            $(this).attr('src',"/images/gallery-cargo-fleet.jpg");
        }
    );
    $("#python-sm-logo").hover(
        function () {
            $(this).attr('src',"/images/python-sm-logo-active.jpg");
        },
        function () {
            $(this).attr('src',"/images/python-sm-logo.jpg");
        }
    );


});

