(function( $ ) {
	$(function() {
		opts = {
			distances : [40],
			leftShifts : [-30],
			bubbleTimes : [400],
			hideDelays : [0],
			bubbleWidths : [400],
			bubbleImagesPath : "fileadmin/js/codabubble/images/skins/classic",
			msieFix : false
		};
		$('.coda_bubble').codaBubble(opts);
		
		$('.showdescription').live('click', showDescription);
		$('.hidedescription').live('click', hideDescription);
		$('.additionalInfo').hide();
		$('.showdescription').attr('href', '#');
	});
	
	function showDescription( event ) {
		event.preventDefault();
		$(this).parent().parent().parent().find('.additionalInfo').show(250);
		$(this).attr('class', 'hidedescription');
		$(this).html('Hide Information')
	}
	
	function hideDescription( event ) {
		event.preventDefault();
		$(this).parent().parent().parent().find('.additionalInfo').hide(250);
		$(this).attr('class', 'showdescription');
		$(this).html('More Information');
	}
})( jQuery );

