var stopSliding = 0;
var slideCounter = 0;

$('#wrapper.front,.front section,.front article,.front footer').hide(); // hide on pageload
$(document).ready(function(){
	
// ie lt 9
 if ( $.browser.msie && (parseInt($.browser.version, 10)<9)) {
 	var theAlert = "<div class='alert'><b>Figyelem! Ez a weboldal olyan webes technológiát használ, melynek hibátlan megjelenítésére az Internet Explorer "+parseInt($.browser.version, 10)+" nem alkalmas.</b><br />A következő linkre kattintva ingyenesen letöltheti a legfrissebb Google Chrome böngészőt, amely kiválóan alkalmas a legújabb internetes tartalmak gyors és hibátlan megjelenítésére is: <a href='http://www.google.hu/chrome' target='_blank'>A Google Chrome böngésző letöltése</a></div>";
 	$('#wrapper').css('margin-top','60px');
	$('body').append(theAlert);
}

var tempHeight = $('#wrapper').outerHeight(true);
// page open effect
$('.fromleft').css({ left: '-800px', paddingTop: '20px'});
$('.fromright').css('right', '-800px');
if ($('#wrapper.front').length){
// doit! doit!
$('#wrapper.front').delay(400)
	.css({height: '70px', position: 'absolute', top: '300px', left:'50%', marginLeft:'-490px'})
	.fadeIn(1000)
	.animate( {top:'350px'}, 500)
	.animate( {top:'0'}, 400)
	.animate({height: tempHeight+"px"}, 400, function(){
	$('#wrapper').css('height', 'auto');
	$('.front section,.front article,.front footer').fadeIn(500);	
	$('.fromright').delay(300).animate({right: '-10px'},300, function(){
			$('.fromleft').animate({left: '20px', paddingTop: '50px'},500, function() {
				slideIt(0);
			});
		});
	});
} else {
	$('.fromright').delay(300).animate({right: '-10px'},300, function(){
			$('.fromleft').animate({left: '20px', paddingTop: '50px'},500, function() {
				slideIt(0);
			});
		});
}
	/* pause on mouseover
	$('.slide').hover(function(){
	stopSliding = 1;
	$('.fromleft').stop(true, true);
	}, function(){
		stopSliding = 0;
		slideIt(slideCounter);
	});
	*/
	
	// custom font
Cufon.replace(' .merge', { fontFamily: 'Merge' }); 
	// contact
$('span.honlapkeszites').html('peter.almasi@nemvalid.hu');

	
});

// ok, its a bit tricky
function slideIt(i){
	if (!stopSliding){
		if (i >= $('.fromleft .slide').length) { $('.fromleft').css('top', '400px').animate({top: '0'}, 500); slideCounter=0; slideIt(slideCounter); } else {
			$('.fromleft').delay(4700).animate({top: '+=50'}, 500).animate({top: '-=500'}, 500, function() {
				slideCounter=slideCounter+1;
				$('#slideshow .nav').html((slideCounter+1)>4 ? 1 : slideCounter+1); // i was drunk
				slideIt(slideCounter);
			});
		}
	} else {
	setTimeout("slideIt("+slideCounter+")",500); // still drunk
	}
}
