// JavaScript Document


jQuery(window).resize(
function() {
jQuery('#sidebar').css('height',jQuery(window).height());
});


jQuery(document).ready( function() {
jQuery('#twitterbartop').fadeTo(100,0.6);



jQuery('#sidebar').css('height',jQuery(document).height());



jQuery('#twitterbar').hover( function() {
jQuery('#twitterbartop').fadeTo(100,1);
}, function() {
jQuery('#twitterbartop').fadeTo(100,0.6);
});

jQuery('article #postthumbnail').hover( function() {
jQuery(this).parent('article').children('.postdate').stop().fadeTo(100,0.1);
}, function() {
jQuery(this).parent('article').children('.postdate').stop().fadeTo(100,1);
});


jQuery('#twitterbartop').toggle( function() {
jQuery('#twitterbar').animate({'height':'80px'},100);
}, function() {
jQuery('#twitterbar').animate({'height':'18px'},100);
});
});
