$(document).ready(function(){
	
    $(".topMenu img, .formSubmit, .bannerLeft, .productPhoto a img, .productLeft a img").hover(
        function () {
            $(this).fadeTo("fast", 0.7);
        },
        function () {
            $(this).fadeTo("fast", 1);
        }
        );
	
    $(".formText, .formPsswd").focus(
        function(){
            this.value = "";
        }
        );
	

});    
