$(document).ready(function() {
        
/*	Nav
-------------------------------------*/
$("#nav").hover(
  function () {
    $(this).animate({marginTop:-50}, 'normal');
  }, 
  function () {
    $(this).animate({marginTop:-92}, 'normal');
  }
);
	        
/*	Comment
-------------------------------------*/


$(".more").click(
	function(){
	if ($(this).parent().children(".full").is(':hidden')) { 
	$(this).parent().children(".mini").hide();
	$(this).parent().children(".full").fadeIn();	
	}
	else if ($(this).parent().children(".mini").is(':hidden')) { 
	$(this).parent().children(".full").hide();
	$(this).parent().children(".mini").fadeIn();
	} 
	
});

/*	Comment
-------------------------------------*/


$(".comments").click(
function(){		
	
	if( $(this).parent().parent().children(".comment").is(':visible') ) {

	$(this).parent().parent().children(".comment").fadeOut();

}

else {
	$(this).parent().parent().children(".comment").fadeIn();

}
	
});


/*	Modal
-------------------------------------*/
$("a.popup").fancybox({
'overlayOpacity': 0.7,
'overlayColor': '#000'
});


});
