$(document).ready(function() {
						   
  $("img").lazyload({
    placeholder : "files/grey.gif",       
    effect      : "fadeIn"
  });
						   
  $('#menu a').click(function(event) {
  	  $('#header img.loading').show();
	  var id = $(this).parent().parent().attr("id");
      var page;
	  page =  $.ajax({
	      url: '/portfolio.php?id='+id+'',
		  async: false
	  }).responseText;								
	$(this).parent().parent().addClass('selected').siblings().removeClass();
 	$('#menu li div.unSelectedItem').show().next().hide();	  
 	$(this).parent('.unSelectedItem').hide().next().show();
	  
  	$("#contentDxContent").fadeOut('slow');
      
	$.scrollTo('body', 1000, function(){
	  $('#content').slideDown(function(){
		$("#content").html(page);
	    slideShow();	
  	    $('#header img.loading').hide();	  									   
	  });										  
	});	
  });


  // SlideShow
  function slideShow() {
    $('#slideshow').cycle({
      fx:    'fade',
      speed:  1500
    });
	$('#slideshow').css('background', 'none');
  }

  
  
  
});