	$(document).ready(function() {	
		
		$('#chord-image').hide();
		$('#chord-right').hide();
		
		
		$('div#chord-names a').click(function(event) {
			if (event.target == this) {
			$.post('/chords/chord-viewer.php', {chord_id: this.id}, 
                function(data) {
			$('#chord-image').html(data);
			
		});
			
					}
		
					
 		$('div#chord-image').show('slow');
		$('div#chord-right').show('slow');
		$('div.chords a').show('slow');
		//$('div#chord-names').hide('slow');
		return false;
		});	
		
		
		$('div#close-chord a').click(function(event) {
									$('#chord-image').hide('slow');
									$('#chord-right').hide('slow');
									$('div.chords a').hide('slow');
									//$('div#chord-names').show('slow');
											  });
		
		
		$("div#chord-scroll").scrollable({size:1,items:'.chords',horizontal:false});
		
		
		$('div.chords img').click(function(event) {
			if (event.target == this) {
				
			$.post('/chords/chord-viewer.php', {chord_id: this.id}, 
                function(data) {
			$('#chord-image').html(data);
			
		});
			
					}
		
					
 		return false;
		});	
		
		$('div.chords a').click(function(event) {
					return false;
		});	
		
		
		
		
	});