jQuery('document').ready(function() {
	jQuery("#header a").removeAttr('title');
	jQuery("#menuwrap a").removeAttr('title');
	jQuery("#rssicon img").removeAttr('alt');
	jQuery('#rssicon').css({opacity:"0.5"});
	jQuery('#rssicon').hover(function() {
		jQuery(this).animate({opacity:"1.0"});
	}, function() {
		jQuery(this).animate({opacity:"0.5"});
	});	
});

/* Twitter Button hover with color */
jQuery('document').ready(function() {
	jQuery("#twitter img").removeAttr('alt');
	jQuery("#twitter a").removeAttr('title');
	jQuery('#twitter img').animate({opacity:"0.4"}); 
	jQuery('#twitter img').hover(function() {
	jQuery(this).animate({opacity:"1.0"});
	jQuery(this).attr("src", jQuery(this).attr("src").replace(/-off.gif/, ".gif"));
	}, function() {
		jQuery(this).attr("src", jQuery(this).attr("src").replace(/.gif/, "-off.gif"));
		jQuery(this).animate({opacity:"0.4"});
	});
});

$(function() {
 $("#blogcontainer").jCarouselLite({
        btnNext: ".next3",
        btnPrev: ".prev3",
		visible: 1,
		speed:1000,
		vertical: true 
			
    });

});