$(document).ready(function(){

    $('.liricTextExtender').live('click',
	function() {
	    
	    var textBlock = $(this).parents('.bh_pesni2').children('.liricText');

	    
	    if ($(textBlock).is(':visible')) {
		$(textBlock).slideUp();		
	    }
	    else {
		$(textBlock).slideDown();
		
	    }

	    return false;
	}
    );
	
    $('.tracksExtender').live('click',
	function() {
	    
	    var textBlock = $(this).parents('.album').children('.pesni');

	    
	    if ($(textBlock).is(':visible')) {
		$(textBlock).slideUp();		
	    }
	    else {
		$(textBlock).slideDown();
		
	    }

	    return false;
	}
    );



    $("a[rel^='prettyPhoto']").prettyPhoto();
	
}); 
