$(document).ready
(
  function()
  {	
  
  	$(window).load
	(
		function()
		{
			
		}
	);
	
	$(window).resize
	(
		function()
		{
			
		}
	);
    
    $(".category").click
    (
      function()
      {
      	var ind = $(".category").index(this);
	    $(".images").eq(ind).show(0).siblings(".images").hide(0);
	    $(this).css({color:"black", backgroundColor:"white", borderBottom:"silver 3px solid"});
	    $(this).siblings(".category").css({color:"silver", backgroundColor:"black", borderBottom:"none"});
        $(this).addClass("selected");
        $(this).siblings(this).removeClass("selected");
      }
    );
    
    $(".image").hover
    (
    	function()
    	{
	    	$(this).children(".imageLabel").show(0);
    	},
    	function()
    	{
    		$(this).children(".imageLabel").hide(0);
    	}
    );
  }
);