$(document).ready(function(){
	$.preloadCssImages({
		statusBarEl: '#status'
	});
	
	var anim = function(){
		$(".logo").delay(100).animate({"margin-top": "+=20px"}, 1000);
		$('.logo').delay(100).animate({"margin-top": "-=20px"}, 1000, anim);
	};
	anim();
	
	$("div.content div.b1 a").fancybox({
		href: './b1.php',
		type: 'iframe',
		width: 800,
		height: 400
	});
	$("div.content div.b2 a").fancybox({
		href: './b2.php',
		type: 'iframe',
		width: 800,
		height: 400
	});
	$("div.content div.b3 a").fancybox({
		href: './b3.php',
		type: 'iframe',
		width: 800,
		height: 400
	});
  $("div.content div.b4 a").fancybox({
    href: './b4.php',
    type: 'iframe',
    width: 800,
    height: 400
  });
}); 
