$(function () {
			$('.ie-strips a').click(function(){
											  $('#ie-comment').slideToggle('slow')
											  return false;
											  });
											  
											  
			$('#logo, #menu').corners("20px transparent bottom");
			$('#footer').corners("20px transparent top");
			$('.commentlist .authorcomment').corners("10px");

			 $('.postbox .thumb img').animate({opacity: .6
							  });
			   
			 $('.postbox .thumb img').hover(function() {
						$(this).stop().animate({opacity: 1 }, 300);
						},function() {
							$(this).stop().animate({opacity: .6}, 1000);
						});

			 $('#logo').animate({borderTopWidth:'3px'
							  });
	$('#logo').hover(function(){
						$('#logo').stop().animate({borderTopWidth:'1px'}, 50);
								  }, function() {
									  $(this).stop().animate({borderTopWidth:'3px'}, 200);
												});

			 $('ul#menu a').animate({borderTopWidth:'3px'
							  });
	$('ul#menu a').hover(function(){
						$(this).stop().animate({borderTopWidth:'1px'}, 50);
								  }, function() {
									  $(this).stop().animate({borderTopWidth:'3px'}, 200);
												});

$('a.scroll').click(function(){
$('html, body').animate({
scrollTop: $($(this).attr("href")).offset().top }, 500);
return false; });

			$('ul.menu-body:eq(0), ul.menu-body:eq(1)').show();
			
			$('div.menu-title').click(function(){
											  $(this).next('ul.menu-body').slideToggle('fast')
											  return false;
											  });

			$('div#twitter-status').hover(function(){
												$('#twitter-status small').show();}
												,function() {
							$('#twitter-status small').hide();
												});

	$("a.fancy").fancybox();
});