// Blogroll

jQuery(document).ready(function($){
	$(".blogroll-link").toggle(function() {
			$("#header").animate({height:"500px"},"slow");
			$("#blogroll").show();
		},function() {
			$("#header").animate({height:"175px"},"slow");
			$("#blogroll").hide();
	});	
});



