// Fancybox

$(document).ready(function() {
	
$("a.fancy1").fancybox({
  'frameWidth': 450,
  'frameHeight': 525
 });


$("a.iframe").fancybox({
  'frameWidth': 660,
  'frameHeight': 650,
  'callbackOnClose': function() {
    $("#fancy_content").empty();}
 });

$("a.newsletter").fancybox({
  'frameWidth': 672,
  'frameHeight': 680
 });


	  
$("a.interviews").fancybox({
  'frameWidth': 610,
  'frameHeight': 640
 });
 
});




