$(document).ready(function()
{
	//Fire 800px wide iframe
	$(".iframeidx").fancybox(
	{
		 'width' : 800,
		 'height' : '90%',
		 'autoScale' : false,
		 'transitionIn' : 'elastic',
		 'transitionOut' : 'fade',
		 'speedIn'		:	600, 
		 'speedOut'		:	200, 
		 'type' : 'iframe'
	 });
	 
	 //Fire Regular iframe
	 $(".iframe").fancybox(
	{
		 'width' : '90%',
		 'height' : '90%',
		 'autoScale' : false,
		 'transitionIn' : 'elastic',
		 'transitionOut' : 'elastic',
		 'speedIn'		:	600, 
		 'speedOut'		:	200, 
		 'type' : 'iframe'
	 });
	 
	 //Navigation Hover
	 //$("#nav li").hover(function(){$(this).find("ul").css("display", "block");},function(){$(this).find("ul").css("display", "none");});
}); 