
$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a.colorbox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	300, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity':	0.5,
		'overlayColor'	:	'#fff',
		'titlePosition'	:	'over'
	});
	$("a.fancybox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	300, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity':	0.5,
		'overlayColor'	:	'#fff',
		'titlePosition'	:	'over'
	});
	$(".application").fancybox({
        	'type':			'iframe',
        	'width':		600,
        	'height':		800,
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	300, 
			'speedOut'		:	200, 
			'overlayShow'	:	true,
			'overlayOpacity':	0.5,
			'overlayColor'	:	'#fff'
        	});
});


$(document).ready(function() {
  var target = location.hash && $(location.hash)[0]; 
  if(target) {
   $('html,body').animate({scrollTop: 380}, 800);
   };
});
