$(function() {
	// Services > OnIT Model Window
	if ($("a.fancybox").length)
		$("a.fancybox").fancybox();

	if ($("a.iframe").length)
		$("a.iframe").fancybox({
			'frameWidth': 640,
			'frameHeight': $(window).height() - 70
		});

	// Blog Images Model Window
	if ($(".blog_entry").length)
		$("img[class*=wp-image-]").parent("a").fancybox().end().removeAttr("title");

	// Services > OnIT: Hover-over tooltip
	if ($("abbr.tooltip").length) {
		$("abbr.tooltip").cluetip({
			splitTitle: '|',
			width: 400,
			dropShadowSteps: 4,
			fx: { open: 'fadeIn', openSpeed: '1000'	},
			hoverIntent: { sensitivity: 3, interval: 50, timeout: 0 }
		});
	}

	// Services > Prefix
	if (typeof swfobject === 'function')
		swfobject.embedSWF("/layout/content_resource_prefix_diagram.swf", "content_resource_prefix_diagram", "592", "560", "8.0.0", "/layout/expressInstall.swf");
});