
// implementering af goFlip funktionalitet hvor admagz indlejres direkte på hjemmesiden

function goFlip( magz_id ){
	var iframe = $( "#flipFrame" );
	iframe.attr( "src", "/php/admagz_proxy.php?magz_id=" + magz_id );

	iframe.ready( function( e ) {
			iframe.hide();
			iframe.css( {
				"position"  : "absolute",
				"top"       : "0px",
				"left"      : "0px",
				"z-index"   : 100,
				"margin"    : "0px",
				"padding"   : "0px"
				} );
			} );
}

function flipLoaded( ) {
	var iframe = $( "#flipFrame" );
	iframe.css( {
			"position"  : "absolute",
			"top"       : "0px",
			"left"      : "0px",
			"z-index"   : 100,
			"margin"    : "0px",
			"padding"   : "0px"
			} );
	iframe.fadeIn( 500 );
}

function closeAdmagz() {
	var iframe = $( "#flipFrame" );
	iframe.hide( );
	iframe.empty( );
}

