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);
	}
}

getTwitters('tweets', { 
  id: 'clear_living', 
  count: 3, 
  enableLinks: true, 
  ignoreReplies: false, 
  clearContents: true,
  template: '%text% <br /><a class="tweet-time" href="http://twitter.com/%user_screen_name%/statuses/%id_str%/">%time%</a>'
});

jQuery(document).ready(function($) {

	
	/* 
	$(".img-wrapper").vAlign();
	$(window).resize(function() { 
		$(".img-wrapper").vAlign();
	});
	
	
	var height = $('.img-wrapper').height();
	var imgHeight = $('.img-wrapper img').height();
		$('.img-wrapper img').css ({
			"position" : "relative",
			"top" : height/2 - imgHeight/2
		});
	*/
	
	$('#access .menu li:nth-child(odd) a').addClass('alt');
	$('#home-projects .menu li:nth-child(odd) a').addClass('alt');
	$('#home-projects .hp-imgs div:nth-child(even)').addClass('alt');
	$('.archive #content article:nth-child(odd)').addClass('alt');
	
	$("#slider").cycle({
    	timeout: 6000,
    	speed: 800,
    	pause: 1,
    	next: '#s-next', 
    	prev: '#s-prev'
  	});
  	  	
  	$('#slider .post').hover(function() {
   		$(this).find('h2.entry-title a').css("color","#F90");
	}, function() {
		$(this).find('h2.entry-title a').css("color","#FFF");
	});
	
	$('#content article').hover(function() {
   		$(this).find('h2.entry-title a').css("color","#F90");
   		$(this).find('.read-more').css("background","#F90");
	}, function() {
		$(this).find('h2.entry-title a').css("color","#FFF");
		$(this).find('.read-more').css("background","#19618C");
	});
	
   	$('#descriptions320 .article-txt').hide();
   	$('#descriptions768 .article-txt').hide();
   	$('#menu-item-96 a').toggle(function() {
   		$(this).css ({
			"background-position" : "right bottom",
			"background-color" : "#286E97"
			
		});
   		$('.descriptions .hp-residential').stop(true, true).animate({opacity: "show"}, "fast");
	}, function() {
		$(this).css ({
			"background-position" : "right top",
			"background-color" : "#448CB1"
			
		});
		$('.descriptions .hp-residential').stop(true, true).animate({opacity: "hide"}, "fast");
	});
	$('#menu-item-97 a').toggle(function() {
		$(this).css ({
			"background-position" : "right bottom",
			"background-color" : "#286E97"
			
		});
	  	$('.descriptions .hp-commercial').stop(true, true).animate({opacity: "show"}, "fast");
	}, function() {
		$(this).css ({
			"background-position" : "right top",
			"background-color" : "#6CA6C7"
			
		}); 	
	  	$('.descriptions .hp-commercial').stop(true, true).animate({opacity: "hide"}, "fast");
	});
		
	$('#slider.post-slider a').click(function(e) {
    	e.preventDefault();
	});
  
});

