/*!
 *
 *	On the fly lejátszó (flowplayer)
 *
 *	Készítette: Müller Árpád
 *	Copyright 2011 www.dreambit.hu
 *
*/
$(document).ready(function(){$("a.fly").click(function(){var file=$(this).attr("href").split('file=');$.get('ajax/lejatszo.php?file='+file[1],function(data){$('#bocontent').html(data);flowplayer("flow","media/flowplayer-3.2.7.swf",{clip:{autoPlay:false,autoBuffering:true}});width=$(window).width();height=$(window).height();wh=(width/2)-180;h=(height/2)-144;$("#bocontent").css({'left':wh,'top':h});$("#blackout").fadeIn(1000);$("#bocontent").fadeIn(0);$("body").keyup(function(e){if(e.keyCode==27){$("#blackout").hide();$("#bocontent").hide();$("#bocontent").empty()}return false});$("#blackout").click(function(){$(this).hide();$("#bocontent").hide()})});if($('#bocontent #flow').length==1){return false}else{return true}})});
