$(document).ready(function() {
	$("#login_btn").click(function () {
		$("#login").toggle("slow");
	});
	
	$('.video').hover(function() {
		$('.playpause', this).toggleClass('hover');
	}, function() {
		$('.playpause', this).toggleClass('hover');
	});
	
	$('.meta img').hover(function() {
		$(this).closest('.song').find('.playpause').toggleClass('hover');
	}, function() {
		$(this).closest('.song').find('.playpause').toggleClass('hover');
	});
	
	$('.video').vLoad();
	/*.song .video:hover {
		background-color:#333;
	}*/
	
	
});
