$(document).ready(function() {
						   
	Cufon.replace('#Navigation ul li a');
	
	$("#Navigation ul li a").mouseover(function() {
	Cufon.replace($(this),{color:'#0f1348'});
	});
  $("#Navigation ul li a").mouseout(function() {
	Cufon.replace($(this),{color:'#ba3b4e'});
	});
  
   $("#HeaderLinks a").mouseover(function() {
    $(this).css("color","#0f1348");
	});
  $("#HeaderLinks  a").mouseout(function() {
     $(this).css("color","#f2b82f");
	});
  
  $("#Footer a").mouseover(function() {
     $(this).css("color","#0f1348");
	});
  $("#Footer  a").mouseout(function() {
     $(this).css("color","#f2b82f");
	});
 
  $("#HeaderLinks #example1").fancybox({
	 'padding'           : 0,
	 'width' 			 : 550, 
	 'height'			: 400,
	'autoScale'     	: false,
	'transitionIn'		: 'none',
	'transitionOut'		: 'none'
	});
  
  $("#FooterLinks #example1").fancybox({
	 'padding'           : 0,
	 'width' 			 : 550, 
	 'height'			: 400,
	'autoScale'     	: false,
	'transitionIn'		: 'none',
	'transitionOut'		: 'none'
	});
  
  $("#PostPageContent #example1").fancybox({
	 'padding'           : 0,
	 'width' 			 : 550, 
	 'height'			: 400,
	'autoScale'     	: false,
	'transitionIn'		: 'none',
	'transitionOut'		: 'none'
	});
  
    $("#PostPageContent #example3").fancybox({
	 'padding'           : 0,
	 'width' 			 : 550, 
	 'height'			: 400,
	'autoScale'     	: false,
	'transitionIn'		: 'none',
	'transitionOut'		: 'none'
	});
  
  $("#PostPageContent #example2").fancybox({
	 'padding'           : 0,
	 'width' 			 : 389, 
	 'height'			: 550,
	'autoScale'     	: false,
	'transitionIn'		: 'none',
	'transitionOut'		: 'none'
	});
});

