$('ul#navigation li').hover(function() {
$(this).addClass('drop');
}, function() {
$(this).removeClass('drop');
});

// Opening links in the new windows - rel="ext"
$(function() {
$('a[rel*=ext]').click( function() {
window.open(this.href);
return false;
});
});

$(function () {
	
	$('body').css( 'padding-bottom', '0' );
			
});
