$(document).ready(function() {

// add lightbox to all the a href's inside .eck_lbimg, used for plugin
    $('.thumb_wrap a').lightBox();


$(function() {
  $("#nav .nav_item a").click(function() {        
   $('html,body').animate({scrollTop: $("#"+$(this).attr("rel")).offset().top},'slow');
  });
})

$(function() {
 $(".to_top a").click(function() {        
   $('html,body').animate({scrollTop: $("#"+$(this).attr("rel")).offset().top},'slow');
  });
})


$('.to_top').hide();
$('.to_top').after('<div class="grid_1 hidden_top"><p><a href="#">X</a></p></div>');
$('.content_container').hover(function() {
	 $(this).children('.to_top').fadeIn("fast");
  },
  function () {
	$(this).children('.to_top').fadeOut("fast");
	
  });

 
						   
});






















