//var modal_html = "<div id='feedback_main'><input type='text' value='Ihr Name' id='feed_name' name='feed_name' class='text' autocomplete='off'/></div><div><input type='text' value='Ihre Telefonnummer' id='feed_phone' name='feed_phone' class='text' autocomplete='off'/></div><div class='formrow'><label for='fromtime'>Von</label> <input type='text' value='09:00' id='fromtime' name='fromtime' class='text smallfield' autocomplete='off'/><label for='tilltime'>Bis</label> <input type='text' value='19:00' id='tilltime' name='tilltime' class='text smallfield' autocomplete='off'/></div><div class='formrow'><textarea cols='20' rows='10' id='feed_message' name='feed_message'>Hallo Reisegeier Team, bitte Rufen Sie mich zuruck! Grund:</textarea></div>";

//$('#testmodal').live('click', function(){$.prompt(modal_html,{ prefix: 'jcs' });});
//$.prompt('Example 5',{ prefix: 'impromptu', opacity: 0 });

ln = $('#my_for_news').css('width');
ln = ln.substr(0,ln.length-2);

font = $('#my_for_news').css('font-size');
font = font.substr(0,font.length-2);


$('#my_for_news').load("load_news.php?width="+ln+"&font="+font);


$('.li_for_news').live('click',show_more);
function show_more(){
	li_news_id = $(this).attr('id');
	li_news_id = li_news_id.substring(8,li_news_id.length);
	
	$('.to_hide:not(#more_'+li_news_id+')').slideUp('slow');
	$('#more_'+li_news_id).load("load_news.php?id="+li_news_id,function(){$('#more_'+li_news_id).slideDown('slow');});
}