/********************  WORKING ***/


jQuery(document).ready(function() {
				
  jQuery("#gallery img").click(function()
  {
    var imgAlt = jQuery(this).attr("alt");
    var imgPath = jQuery(this).next('input').val();
		  jQuery("#feature img").hide();
    jQuery("#feature img").load( function()
    {
      jQuery("#feature img").fadeIn();
    }).attr({"src": imgPath, "alt": imgAlt });
  });
  
  jQuery("#cat-gallery a").hover(function()
  {
    var imgAlt = jQuery(this).attr("alt");
    var imgPath = jQuery(this).children('input').val();
    
		  jQuery("#feature img").hide();
    jQuery("#feature img").load( function()
    {
      jQuery("#feature img").fadeIn();
    }).attr({"src": imgPath, "alt": imgAlt });
  }, function(){});
});
