// JavaScript Document
/* Teaser image swap function */
$(function(){

    $('img.swap').mouseover(function () {
		
		var over= $(this).attr('alt'); // initial src		
		var off= $(this).attr("src"); // initial src		
        this.src = over;
		this.alt = off;
				
    });
	
	 $('img.swap').mouseout(function () {
       var off= $(this).attr('alt'); // initial alt	
		var over= $(this).attr("src"); // initial src		
        this.src = off;
		this.alt = over;
    });

});

