$(document).ready(function() {
	// set up rollover
	$("img.login").hover(
		function()
		{
			this.src = this.src.replace("-out","-hover");
		},
		function()
		{
			this.src = this.src.replace("-hover","-out");
		}
	);
	
	
});



