$(function() { 
//////////////
//FitText Calls
//////////////
	//$(".mobile li").fitText(.7); //page title
//////////////
//End FitText Calls
//////////////
$('.bottomcontainerBox').removeAttr("style");
$('.bottomcontainerBox div').removeAttr("style");
//////////////
//Detect Vertical Scroll 
//////////////

	$(window).scroll(function () { 
		if($(window).scrollTop()>150) {
			$('.jesse-friedman').show();
			$('.jesse-friedman img').css('width', '100%');
		}
		else $('.jesse-friedman').hide();
		

	});

//////////////
//Detect Vertical Scroll 
//////////////






//////////////
//Image Grid Rollovers
//////////////
	$imggrid_hoveroff = function() {
		$('.imggrid img').fadeTo(0, 1); 
		$('.imggrid img').css('box-shadow', 'none'); 
	};
	
	$imggrid_hoveron = function($currentimage) {
		$('.imggrid img').fadeTo(0, .25);
		$($currentimage).fadeTo(0, 1); 
		$($currentimage).css('box-shadow', '0 0 10px #6b6b6b'); 
	};
	
	
	$('#img1').hover(function() {
		$imggrid_hoveron('.attachment-grid-1');
	},
	function() {
		$imggrid_hoveroff();
		
	});
	$('#img2').hover(function() {
		$imggrid_hoveron('.attachment-grid-2');
	},
	function() {
		$imggrid_hoveroff();
		
	});
	
	$('#img3').hover(function() {
		$imggrid_hoveron('.attachment-grid-3');
	},
	function() {
		$imggrid_hoveroff();
		
	});
	$('#img4').hover(function() {
		$imggrid_hoveron('.attachment-grid-4');
	},
	function() {
		$imggrid_hoveroff();
		
	});
	$('#img5').hover(function() {
		$imggrid_hoveron('.attachment-grid-5');
	},
	function() {
		$imggrid_hoveroff();
		
	});

//////////////
//Image Grid Rollovers
//////////////



//////////////
//Intro Gears
//////////////


var angle = 0;
setInterval(function(){
	angle+=1;
	$("#lower").rotate(angle);
	$("#upper").rotate(angle);
},20);
var negangle = 0;
setInterval(function(){
	negangle-=1;
	$("#middle").rotate(negangle);
},20);

//////////////
//Intro Gears
//////////////

});


