$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#slide').hide();
 // shows the slickbox on clicking the noted link
  $('a#show').click(function() {
 $('#slide').fadeIn('slow');
 return false;
  });
   // shows the slickbox on clicking the noted link
  $('a#hide').click(function() {
 $('#slide').fadeIn('slow');
 return false;
  });
 // hides the slickbox on clicking the noted link
  $('a#tog').click(function() {
 $('#slide').slideToggle('fast');
 return false;
  });

});

$(document).ready(function(){

	$(".close").click(function(){
	  $("#box").slideToggle("slow");
	 
	});

});

$(document).ready(function() {
			$("a.portfolio").fancybox();
});



