$(document).ready(function(){

	// preload swap images
    $('.swap').each(function(){
        $('<img/>')[0].src = $(this).attr('src').replace("-off.","-on.");
    });

	// hover over swap
	$('.swap').hover(
		function(){
			$(this).attr('src', $(this).attr('src').replace("-off.","-on."));
		},
		function(){
			if(!$(this).hasClass('selected'))
				$(this).attr('src', $(this).attr('src').replace("-on.","-off."));
		}
	);

//var pathname = window.location.pathname;


});
