$(document).ready(function(){
	
	/*
	Tour Stuff Here
	*/
	$('.show').mouseover(function(){
		$(this).css('border-bottom','1px solid #000');
	});
	$('.show').mouseout(function(){
		$(this).css('border-bottom','1px solid #E4E2DC');
	});
	$('.show').click(function(){
		var theURL = $(this).attr('data-url');
	//	alert('show '+vidURL);
		window.open(theURL);
	});
	
	/*
	Video Stuff Here
	*/
	
	$('.vid').mouseover(function(){
		$(this).find('div').css('color','#000');
	});
	$('.vid').mouseout(function(){
		$(this).find('div').css('color','#663300');
	});
	/*
	$('.vid').click(function(){
		var vidURL = $(this).attr('data-vimeo');
	//	alert('video '+vidURL);
		window.open(vidURL);
	});
	*/

});


// real quick check
function isMobile(){
	if( navigator.userAgent.match(/Android/i) ||
 		navigator.userAgent.match(/webOS/i) ||
		navigator.userAgent.match(/iPhone/i) ||
 		navigator.userAgent.match(/iPod/i)
 	){
		return true;
	}	
}
