jQuery(document).ready(function($) {

	$('#cw-expander').click(expand);
	
	//initialize hidden fields
	$('.cw-hide').css('display', 'none');
	$('.cw-entry').css('max-height', '17px');
	$('.cw-entry').css('overflow', 'hidden');

	//dölj de tre sista
	show_first_three('.cw-entry');
	
/*	function hide_last_three(selector) {
	
		$(selector).each(function(index) { 
			if(index > 2) { // visa bara de tre första entries
				$(this).fadeOut();
			}
		});
	} */

	function show_first_three(selector) {
	
		$(selector).each(function(index) { 
			if(index < 3) { // visa bara de tre första entries
				$(this).fadeIn('slow');
			} else {
				$(this).fadeOut();
			}
		});
	}

	function expand() {
	  	if($('#cw-frame').css('height') != 'auto') {
	    	//time to expand
			$('#cw-content').css('display', 'none');
			$('.cw-entry').css('max-height', '50px');
			$('.cw-entry').css('overflow', 'visible');
		    $('#cw-frame').height('auto');
			$('#cw-content').fadeIn('slow');
			$('.cw-hide').fadeIn('slow');
			$('#cw-expander').html('Minimera'); //change text of button
			$(".cw-entry").fadeIn('slow');
		} else {
		  //make the box the height the myBar
			$('#cw-frame').stop().animate({height:'100%'},{queue:false,duration:400});
			$('.cw-entry').css('max-height', '17px');
			$('.cw-entry').css('overflow', 'hidden');
			$('.cw-hide').fadeOut('fast');
			$('#cw-expander').html('Expandera');
			show_first_three('.cw-entry');
		}
	}

});