// Main Initialising
$(document).ready( function() {
								// hiding img facebook sidebar after DOM Loaded (to avoid size flickering)
								$('div.sb_feed_container p img').css({display: "none"});
							  
								$("a.imggroup").colorbox({rel:'imggroup',current:'{current}/{total}'}); 
								
								$.localScroll();
								}
				  );
				  
// Init after Images (and everything else) loaded...
$(window).load ( function () {
							 // resize img facebook sidebar via jquery plugin
							 $('div.sb_feed_container p img').resize({maxWidth: 90});
							 
							 // remove all inline styles from the images
							 $('div.sb_feed_container p img').removeAttr("style")
							 
							 // show images again:
							 $('div.sb_feed_container p img').css({display: "inline"});
							 }
				);
