  $(document).ready(function(){
	// tabs
	$('#tabs').tabs();

	// lightbox
	$(function() {
		$('a[@rel*=lightbox]').lightBox();
	});

	// tooltip
	$('div[class="app"]').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: ' --- ',
		fade: 250,
		fixPNG: true,
		opacity: 0.92
	});

	$('img[class="appIcon"]').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: ' --- ',
		fade: 250,
		fixPNG: true,
		opacity: 0.92
	});

	// targets
	$('.serviceBoxLink a').attr({
		target: "_blank"
	});
	$('.serviceInline').attr({
		target: "_blank"
	});
});