///////////////////////////////////////////////////////////////////////////////
$( document ).ready( function() {

	$( "div.faq_box_header" ).click( function() {
		
		box_content = $( this ).parent().find( "div.faq_box_content" );
		controller	= $( this ).find( "div.faq_box_controller img" );
		
		
		if( box_content.css( "display" ) == "block" ) {
			box_content.slideUp();
			controller.attr( "src", "./gfx/faq_clapper_plus.gif" );
		} else {
			box_content.slideDown();
			controller.attr( "src", "./gfx/faq_clapper_minus.gif" );
		}
		
	} );
} );

///////////////////////////////////////////////////////////////////////////////
function edit_ipod( state ) {
	
	document.getElementById( 'edit_layer_ipod' ).style.visibility		= state;
	document.getElementById( 'edit_layer_tarif' ).style.visibility	= "hidden";
}

///////////////////////////////////////////////////////////////////////////////
function edit_tarif( state ) {
	
	document.getElementById( 'edit_layer_tarif' ).style.visibility	= state;
	document.getElementById( 'edit_layer_ipod' ).style.visibility		= "hidden";
}

///////////////////////////////////////////////////////////////////////////////
function detail_window( obj ) {
	
	window.open( obj.href, obj.target, 'width=320,height=320,scrollbars=0' );
}

///////////////////////////////////////////////////////////////////////////////
function rueckruf_popup( href, target ) {

	window.open( href, target, 'width=544,height=700' );
}

///////////////////////////////////////////////////////////////////////////////
function tarifwechsel_popup( href, target ) {

	window.open( href, target, 'width=520,height=600' );
}
