jQuery(document).ready(function() {
	jQuery(".youtube").colorbox({iframe:true, innerWidth:720, innerHeight:576});
	jQuery("#contacts").colorbox({iframe:true, width:800, height:"80%"});
	
	jQuery(".video img").each(function() {
		jQuery(this).css({
			marginLeft: "-"+(jQuery(this).width()/2)+"px",
			marginTop: "-"+(jQuery(this).height()/2)+"px"
		})
	});
});
