$( document ).ready( function(){
	/* stopwatch
	var tomorrow = new Date( 2009, 10, 25, 19, 0, 0 );
	$( '#stopwatch' ).countdown( { until: tomorrow, format: 'HMS', compact: true, 
		layout: '{h10}{h1}:{m10}{m1}:{s10}{s1}'} );
	
	*/
	if( mainTplNS.looged == true ){
		$( '#zarejestruj' ).remove();
        if( document.getElementById( 'menu-bg' ) ){
			$( '#menu-bg' ).attr( 'id', 'menu-bg-user' );
		}
		if( !document.getElementById( 'profile' ) ){
			$('<li id="profile"><a href="'+ mainTplNS.mainUrl + 'profil">Profil</a></li>').appendTo( '#menu ul' );
		}
	}
	
	
	var flashvars = {

		link0: mainTplNS.mainUrl + 'profil/bazaar',
		link1: mainTplNS.mainUrl + 'gry/3/swiat_logiki', // -  świat logiki
		link2: mainTplNS.mainUrl + 'gry/4/swiat_przed_wiekami', //- Świat przed wiekami
		link3: mainTplNS.mainUrl + 'gry/1/swiat_przyrody', //- Świat przyrody
		link4: mainTplNS.mainUrl + 'gry/2/swiat_ksiazek_i_jezyka', //- Świat książek i języka
		link5: mainTplNS.mainUrl + 'gry/5/swiat_cywilizacji_i_techniki', // - Świat cywilizacji i techniki
		logged: mainTplNS.looged,
		homeType: mainTplNS.homeType,
		homeLevel: mainTplNS.homeLevel,
		leon: mainTplNS.showLeon,
		profil: mainTplNS.mainUrl + 'profil'

	};
	var params = {
	'wmode': 'opaque'
	};
	var attributes = {};
	attributes.id = 'flash';
	swfobject.embedSWF( mainTplNS.mainUrl + 'f/wyspa.swf?ver=5', "flash", '800', '410', '10.0.0', 'f/expressInstall.swf', flashvars, params, attributes );


	bindCollapse( $('.content-wrapper .collapse') );
	bindECollapse( $('.content-e-wrapper .collapse') );
	
	$( '#news-content dl dt:nth-child(4n+1)' ).addClass( 'odd' );
});

function bindECollapse( oElem ){
	$( oElem ).click( function(){

		var html = '<div class="bar" id="'+$( oElem ).parents( '.content-e-wrapper' ).attr('id')+'_bar">';
		html += '<h3 id="'+$( oElem ).prev(0).attr('id')+'">'+$( oElem ).prev(0).html()+'</h3>';
		html += '<a href="#" title="rozwiń" class="expand">Rozwiń</a>';
		html += '</div>';
		$( oElem ).parents( '.content-e-wrapper' ).hide();
		$( oElem ).parents( '.content-e-wrapper' ).before( html );
		bindExpand( $('.expand'), $( oElem ).parents( '.content-e-wrapper' ).attr('id') );
		return false;
	});
}

function bindCollapse( oElem ){
	$( oElem ).click( function(){

		var html = '<div class="bar" id="'+$( oElem ).parents( '.content-wrapper' ).attr('id')+'_bar">';
		html += '<h3 id="'+$( oElem ).prev(0).attr('id')+'">'+$( oElem ).prev(0).html()+'</h3>';
		html += '<a href="#" title="rozwiń" class="expand">Rozwiń</a>';
		html += '</div>';
		$( oElem ).parents( '.content-wrapper' ).hide();
		$( oElem ).parents( '.content-wrapper' ).before( html );
		bindExpand( $('.expand'), $( oElem ).parents( '.content-wrapper' ).attr('id') );
		return false;
	});
}

function bindExpand( oElem, idContent ){
	$( oElem ).click( function(){
		$( '#'+idContent ).show();
		$('#'+idContent+'_bar').remove();

		return false;
	});
}