$(document).ready(function()
	  {
	        // JFlow Slider
	        /*$("#items").jFlow
			({
			      slides: ".mySlides",
				  width: "460px",
				  height: "232px",
				  duration: 100
			});*/
			
			$('.folio-box:last').css('border', '0px').css('padding-bottom', '0px').css('margin-bottom', '16px');
			
			$('#show-logos').click(function()
			{
				  $('#sidebar li').css('font-weight', 'normal');
				  $(this).css('font-weight', 'bold');
				  $('.website').hide('fast');
				  $('.webdev').hide('fast');
				  $('.logo').show('fast');
				  $('.logo:last').addClass('nopadborder');
			});
			
			$('#show-websites').click(function()
			{
				  $('#sidebar li').css('font-weight', 'normal');
				  $(this).css('font-weight', 'bold');
				  $('.logo').hide('fast');
				  $('.website').show('fast');
				  $('.website:last').addClass('nopadborder');
				  $('.webdev').hide('fast');
			});
			
			$('#show-webdev').click(function()
			{
				  $('#sidebar li').css('font-weight', 'normal');
				  $(this).css('font-weight', 'bold');
				  $('.webdev').show('fast');
				  $('.webdev:last').addClass('nopadborder');
				  $('.logo').hide('fast');
				  $('.website').hide('fast');
			});


			
	  });

function myFocus(element) 
{
	if (element.value == element.defaultValue) 
			{
                  element.value = '';
            }
      }
      function myBlur(element) 
	  {
            if (element.value == '') 
			{
                  element.value = element.defaultValue;
            }
      }
	  


function hideCats()
{


}

function showCats(idd)
{//alert('s');
	      obj = document.getElementById(idd);
          if (obj.style.display == "none"){
		obj.style.display="block";
	//$('#'+idd).show(500);

           } 
           else {
		obj.style.display="none";
	//$('#'+idd).hide(500);

			}


}