﻿function newImage(src){ return $("<img />").attr("src", src); }function changeImages(id, src){ $("#" + id).attr("src", src); }$(function(){	newImage('images/btnSend-over.gif');	newImage('images/btnEmbed-over.gif');	newImage('images/btnIpod-over.gif');	newImage('images/btnReplay-over.gif');		$("a").focus( function(){ this.blur(); } );		$("textarea.embed").click(function(){		this.select();	});	});