function imageHover(selector,on,off)
{
	$(selector).hover(
	
	function()
	{
		$('img', this).attr('src',on);
	},
	
	function()
	{
		$('img',this).attr('src',off);	
	});
}
