$(document).ready(function(){


	/* fade photos */
	$('.song-title').fadeTo("slow", 0.8);

	$('.song-post img').mouseover(function() {
		$(this).fadeTo("fast", 0.3);
		$(this).fadeTo("slow", 1);
	});
	
	$('img.rc-avatar').mouseover(function() {
		$(this).fadeTo("fast", 0.3);
		$(this).fadeTo("slow", 1);
	});
	
	/* animation hover effect */
	//$('ul.wrapper li').ahover({toggleEffect: 'width', moveSpeed: 75, toggleSpeed: 115});

	/*toggle categories*/
	$(".toggle-cats").click(function(){
		$("#categories").slideToggle("slow");
		$(this).toggleClass("active");
	});
	

	$(".song-post a").tooltip({delay: 0,track:true,showURL: false,opacity: 0.65,fixPNG: true});
	$(".panel a").tooltip({delay: 0,track:true,showURL: false,opacity: 0.65,fixPNG: true});
	
	$('.comment-body').corner();
	
}); 

