$(document).ready(function(){
	$(".swapImage img").hover(
		function() {
            if(!$(this).css("z-index", "100").hasClass("disableSwap")){
    			this.src = this.src.replace("-0","-1");
            }
		},
		function() {
            if(!$(this).css("z-index", "1").hasClass("disableSwap")){
    			this.src = this.src.replace("-1","-0");
            }
		}
	);
	
//	var currentZindex = 1;
//	
//	currentZindex++;
//
//	$("a.swapImage").mouseover(function () {
//			$(this).css("z-index", currentZindex + 100);
//		}).mouseout(function () {
//			$(this).css("z-index", "1");
//	});

});
