$(document).ready(function(){

	$('.external').click( function(){ window.open(this.href,'_blank'); return false; })
	$('.noactive').click( function(e){ e.preventDefault(); })
	
	$('.Service').hover(
		function() { $(this).find('a.i2').fadeOut(200);},
		function() { $(this).find('a.i2').fadeIn(200);}
		)
		
	
	$("a.grouped_elements").fancybox();
	$("a#single_image").fancybox();

	$("a#inline").fancybox({
		'hideOnContentClick': true
	});
	
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});	
	
	

	});
