jQuery(document).ready(function() {

// Remove borders from nested widget <ul>'s

jQuery('.widget > ul li ul li').css('border-bottom', 'none');

//Sticky footer

var pageHeight = jQuery('body').height();
var containerHeight = jQuery('#container').height();

if(pageHeight > containerHeight) {

	var difference = pageHeight - containerHeight;
	difference = difference + 30;
	
	jQuery('#footer').css('margin-top', difference + 'px');
}


});
