/* Optic Swerve, opticswerve.com */
protoFluidReady(function() {
	console.log('APP running');

	// Twitter title randomisation
	var titles = ['ProtoFluid. Effortless Responsive Design Testing. #html5 #css', 'New JavaScript library enables adaptive previews for any device viewport.', 'Combat the tablet tsunami with the original responsive design testing app.', "99 Viewports, iPhone's Just One. Test them all with ProtoFluid. #css", 'Show your clients responsive design previews with ProtoFluid #js'];
	var i = Math.floor(Math.random() * (5));
	document.title = titles[i];

});

WebFontConfig = {
	google: { families: [ 'Droid+Sans::latin' ] }

};

(function() {
	var wf = document.createElement('script');
	wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
	wf.type = 'text/javascript';
	wf.async = 'true';
	var s = document.getElementsByTagName('script')[0];
	s.parentNode.insertBefore(wf, s);

})();

// HTML5 shiv, quick fix
if(navigator.userAgent.indexOf('MSIE') !== -1) document.createElement('header');
