if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
var viewportmeta = document.querySelectorAll('meta[name="viewport"]')[0];
if (viewportmeta) {
viewportmeta.content = 'width=device-width, minimum-scale=1.0, maximum-scale=1.0';
document.body.addEventListener('gesturestart', function() {
viewportmeta.content = 'width=device-width, minimum-scale=0.25, maximum-scale=1.6';
}, false);
}
}

// FONTS
google.load("webfont", "1");

 google.setOnLoadCallback(function() {
   WebFont.load({
     google: {
       families: [ 'Yanone Kaffeesatz', 'Nunito','Kreon' ]
     }});
 });


$(document).ready(
		function(){
			$('#slider').innerfade({
				animationtype: 'fade',
				speed: 750,
				timeout: 2000,
				type: 'random'
			}); 
			$('.news-flash ul').innerfade({
				animationtype: 'slide',
				speed: 950,
				timeout: 3000,
				type: 'random'
			});			
		  	$.localScroll(); 
		  	$(".group").colorbox(); 
			$(".iframe").colorbox({width:"800", height:"650", iframe:true}); 
			$(".youtube").colorbox({iframe:true, innerWidth:425, innerHeight:344});
			$(".inline").colorbox({width:"425px", height:"349px", inline:true, href:"#video"});
			$(".flash").colorbox({innerWidth:980, innerHeight:630, iframe:true}); 			

		}
	);
