$(document).ready(function(){
try{ //try loading tabs
	$('#tabs').tabs({
		cookie: {
			expires: 1 // store cookie for a day, without, it would be a session cookie
			}
		});
} catch(err) {
	//ignore error
	}

try { //try loading qtips
$('a[title]').qtip({
	position: {
			my: 'top center',  
			at: 'bottom center', 
			target: 'event'
		},	 
	style: {
			classes: 'ui-tooltip-youtube'
			}
	});


} catch(err) {
	//ignore error
	}
	}); 
