$(document).ready(function () {
							
	// init cufon
	Cufon.set('fontFamily', 'Interstate Mono').replace('h1,h2,h3,h4');
	
	$(".call").hover(   
		function() { 
		
			$(this).animate({'height': 110}, "fast"); 
			$(this).addClass('callhover');
			
		},   
		function() { 
			
			$(this).css({'height': 26});
			$(this).removeClass('callhover');
		
		}
	);
	
	
	os = '';
	mobile = '';
	ua = navigator.userAgent;
	checker = {
	  iphone: ua.match(/(iPhone|iPod|iPad)/),
	  blackberry: ua.match(/BlackBerry/),
	  android: ua.match(/Android/),
	  mac: ua.match(/Mac/), 
	  windows: ua.match(/Windows/),
	  firefox: ua.match(/Firefox/),
	  chrome: ua.match(/Chrome/),
	  safari: ua.match(/Safari/)
	};
	
	if(checker.chrome){
		$('#container').addClass('chrome')
	}


	
		
});

