jQuery(document).ready(function() {

	jQuery('#discography span.tracktext').hide();

	jQuery('#discography span.tracktitle').hover(
		function(){
			if (jQuery(this).next('.tracktext').html() != ''){
				jQuery(this).css('cursor','pointer');
			}
		},function(){
			jQuery(this).css('cursor','default');
	});

	jQuery('#discography span.tracktitle').click(function(){

		if(jQuery(this).next('.tracktext').html() != ''){
			if(jQuery(this).next().css('display')=='none'){
				jQuery('#discography span.tracktext').hide();
				jQuery(this).next().show();
			} else {
				jQuery('#discography span.tracktext').hide();
			}
		}

	});
	
	jQuery('#discography .albumtitle').click(function(){
		jQuery(this).blur();
	});

	jQuery('#discography').accordion({
		autoHeight: false,
		icons: { 'header': 'icon-show', 'headerSelected': 'icon-hide' }
	});
	
	jQuery('.albumtitle').focus(function(){
		jQuery(this).blur();
	});
});
