$(document).ready(function(){
	$(".swapImage img").hover(
		function()
		{
			if(livestreamactive != this.id){
				this.src = this.src.replace("-0","-1");
			}
		},
		function()
		{
			if(livestreamactive != this.id){
				this.src = this.src.replace("-1","-0");
			}
		}
	);
});