function dom_init() {

// Configure fancybox
jQuery("a.fancy").fancybox({
	'titleShow' : false
});

jQuery("a.fancy-title").fancybox({
	'titleShow' : false
});

jQuery("a[rel=fancy_group]").fancybox({
	'transitionIn'		: 'none', // fade / elastic / none
	'transitionOut'		: 'none',
	'titlePosition' 	: 'outside' // inside / over
});

jQuery("a.iframe").fancybox({
	'width'				: '75%',
	'height'			: '75%',
    'autoScale'     	: false,
    'transitionIn'		: 'none',
	'transitionOut'		: 'none',
	'type'				: 'iframe'
});

/*/ Adding pngFix for IE7 below
jQuery(document).pngFix();

// Adding target='_blank' to twitterlinks (Sidebar)
jQuery('#twitter_div ul li a')({
  .attr("target", "_blank");
  });
*/
};
