$(document).ready(function() {  
	$('img').lazyload({ 
    	placeholder : 'http://brushspoke.com/wp-content/themes/brush/images/grey.gif',
		failurelimit : 100,
		threshold : 100,
    	effect : 'fadeIn' 
    });
    
    $('div.info').hide();
    $('#midbar').hide();
    $('.top').hide();
    
     //$('.post img:nth-child(1)').mouseover(function(){
     
    $('.post img').mouseover(function(){
    	$(this).parent().parent().children('div.info').show();
    	}).mouseout(function(){
        $(this).parent().parent().children('div.info').hide();
    });
    
    $('div.info').mouseover(function(){
    	$(this).show();
    	});
    
    $('a.cbtn').click(function(){
	  $('div.cform').slideToggle('fast');
	  return false;
	});
	$('a.sbtn').click(function(){
	  $('div.sform').slideToggle('fast');
	  return false;
	});
	
	
	$('a.lbtn').toggle(function () {
			$('#primary').animate({marginLeft:'440px'},800,show);
				function show(event)
				{
					$('#midbar').fadeIn('fast');
				};
			return false;  
		}, function () {
			$('#midbar').fadeOut('fast',hide);
				function hide(event)
				{
					$('#primary').animate({marginLeft:'280px'},800);
				};
			return false;  
	});
   	
    $(window).scroll(function() { 
        if($(this).scrollTop() != 0) {  
                $('.top').fadeIn();  
                //$('.navigation').fadeIn();   
            } else {  
                $('.top').fadeOut();  
                //$('.navigation').fadeOut();  
            }  
        });
  
        $('.top').click(function() {  
            $('body,html').animate({scrollTop:0},800);  
        }); 
});
