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

	//function setup_slide() {
		$('#pw-expander').click(expand);
	//}

	function expand(){
	  	if($('#pw-frame').css('height') != 'auto') {
	    	//time to expand
	//	    $('.twitterContainer').height('100%'); //make room to show tweets
		    $('#pw-frame').height('auto');
			$('#pw-expander').html('Minimera'); //change text of button
			$('#pw-settings').fadeIn('slow');
		} else {
		  //make the box the height the myBar
			$('#pw-frame').stop().animate({height:'100%'},{queue:false,duration:200});
			$('#pw-expander').html('Expandera');
			$('#pw-settings').fadeOut();
		}
	}

});