$(document).ready(function() {


	$("a.about").fancybox({
			
		 'frameWidth': 670, 
         'frameHeight': 270,
         'callbackOnClose': function() { 
		$("#fancy_content").empty(); 
	}

 
	});
	
		$("a.contact").fancybox({
			
		 'frameWidth': 590, 
         'frameHeight': 600,
        'overflow': 'hidden',
         'callbackOnClose': function() { 
		$("#fancy_content").empty(); 
	}

 
	});


	
	$("a.ei").fancybox({
			
		 'frameWidth': 920, 
         'frameHeight': 625,
         'callbackOnClose': function() { 
		$("#fancy_content").empty(); 
	}

 
	});
	
	$("a.ky").fancybox({
	
		 'frameWidth': 840, 
         'frameHeight': 604 
	});
	
	$("a.fashion").fancybox({
		
		 'frameWidth': 840, 
         'frameHeight': 640,
              'callbackOnClose': function() { 
		$("#fancy_content").empty(); 
	}
 
	});
	
	
	$("a.bahai").fancybox({
				
		'frameWidth': 750, 
        'frameHeight': 480,
        'callbackOnClose': function() { 
			$("#fancy_content").empty(); 
		}
         
	});
	
	$("a.about").click(function () {
      var htmlStr = $(this).html();
      $(this).text(htmlStr);
    });
    
	$("a.contact").click(function () {
      var htmlStr = $(this).html();
      $(this).text(htmlStr);
    });
	
	$("a.fashion").click(function () {
      var htmlStr = $(this).html();
      $(this).text(htmlStr);
    });
    
    $("a.ei").click(function () {
      var htmlStr = $(this).html();
      $(this).text(htmlStr);
    });
    
    $("a.bahai").click(function () {
      var htmlStr = $(this).html();
      $(this).text(htmlStr);
    });
	


});

