// copyright 2008 DTLink, L.L.C. http://www.dtlink.com
// http://www.dtlink.com
//
// Uses jquery.ui to implement an image rollover effect
			
function fv_graphicRollover_swapImage( elem, img1_path, img2_path )
{

// alert( "current: " + $( elem ).attr( 'src' ) + " img1 " + img1_path + " img2 " + img2_path );

if ( $( elem ).attr( 'src' ) == img1_path )
	$( elem ).attr( 'src', img2_path );
else
	$( elem ).attr( 'src', img1_path );

}



