﻿
winW = document.body.offsetWidth;
mleft =(winW-995)/2;
  $('.pagecontainer').css("margin-left",mleft+"px");
  
  function cimer(){
	$('.cimer').show(1000);  
  }

$(document).ready(function () {
    $('#fullpage').fadeIn(1200);
	$('.pagetext').css("display", "none");
	$('.pagetext').fadeIn(800);
	
	setTimeout("cimer()",1000);

	$(".bezar").click(function() {
      $(this).parent().slideUp("slow");
    });
      
});



