/******************************************************************************/
/*																			  */
/*    This is the Tag Cloud Script of f*ckRGB It is surposed to open and      */
/*	  close the Tag Cloud via a button										  */
/*    -------------------------------------------------------------------	  */
/*    Code copyright by Simon Jentsch 2009									  */
/*																			  */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

$(document).ready(function() {
	
	$('#tagCloud div').slideUp(0);
	
	var tagCloudToggler = 0;
	
	$('#toggleCloud').click(function() {
		$('#tagCloud div').slideToggle(500);
		if (tagCloudToggler == 0) {
			$('#toggleCloud').css({backgroundPosition: '0 100%'});
			tagCloudToggler = 1;
		} else if (tagCloudToggler == 1) {
			$('#toggleCloud').css({backgroundPosition: '0 0'});
			tagCloudToggler = 0;
		}
	});
	
});
