
/********************  WORKING ***/
$(document).ready(function() {
				
	$("#carousel ul li img").click(function() {
		var imgPath = $(this).attr("src").replace("signs-t","width460");
		var imgAlt = $(this).attr("alt");
    $("#current img").hide();
		$("#current img").load( function() {
        $("#current img").fadeIn();
      }).attr({"src": imgPath, "alt": imgAlt });
  });
});

