$(document).ready(function(){
					
		// Portfolio
		if($(".portfolio dt a").size() >0 ) {
			$(".portfolio dt a").fancybox();
		} 
		
		// Enable tooltips
		if($(".itemName a").size() > 0) {
			tooltip();
		}
		
		// Prevent IE6 background flickering
		if ($.browser.msie && parseInt($.browser.version) == 6) {
			document.execCommand('BackgroundImageCache', false, true);
		}
});
