jQuery(document).ready(function(){
	// STICKY FOOTER 
	var footerHeight = jQuery('.footer').height();
	var mainBottom = footerHeight + 40 + 'px';
	var footerTop = footerHeight + 20 + 'px';
	jQuery('#main').css('padding-bottom', mainBottom);
	jQuery('.footer').css('margin-top', '-'+footerTop);
	
	// LOGO LINE HEIGHT
	/* // This is buggy when the description text goes two lines or over.
	var logoheight = jQuery("#logo h1").height()+"px";
	jQuery("#logo .description").css("top", logoheight / 2);
	*/
	
	// MOVING SHARE BOX
	jQuery("#wpsc_akst_form").appendTo("#share-box");	
});
