// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
jQuery(document).ready(function(){
		jQuery("#fb_status").Watermark("What's on your mind?");
		
		jQuery("textarea#fb_status").autoResize({
		    // Quite slow animation:
		    animateDuration : 300,
		    // More extra space:
		    extraSpace : 10,
			// limit
			limit : 100
		});
		
		jQuery(".otherlikes").live("click",function(){
			post_id = this.id
			jQuery.get("/show_all_post_like/"+this.id, function(data){
				jQuery("#likecontainer-"+post_id ).html(data);
			});
		});
		
		jQuery("img").lazyload({ 
		    //placeholder : "img/grey.gif",
		    effect : "fadeIn"
		});
});