$(function(){
	// #######################################################################
	// LAZY LOAD SO THE PAGE LOADS FASTER
	// $(".content img").lazyload({ 
	// 	threshold : 900
	// });
	
	// #######################################################################
	// SHUFFLE HOMEPAGE IMAGES
	$('.home .content').shuffle();
	// $('.content img').css({'height':'auto','width':'100%'});
	
	// #######################################################################
	// TOGGLE CONTACT INFORMATION
	jQuery('.nav li.hello .hello').click(function(){
		jQuery(this).next('div').slideToggle('slow');
		
		var logoOffset=jQuery('.logo').offset();
		if(logoOffset.top == 240){
			jQuery('.logo').animate({
				marginTop: "434px"
			}, 'slow');
		}else{
			jQuery('.logo').animate({
				marginTop: "240px"
			}, 'slow');
		}

		return false;
	});
	
	// #######################################################################
	// NAV ROLLOVERS
	var currentSRC;
	jQuery('.nav a.image').mouseenter(function(){
		currentSRC = jQuery(this).find('img').attr('src');
		jQuery(this).find('img').attr('src','over_'+currentSRC);
	}).mouseleave(function(){	
		jQuery(this).find('img').attr('src',currentSRC);
  });
	
	// #######################################################################
	// IF IMAGE IS BLANK, REMOVE IT
	$('.content img').each(function(){
		if($(this).attr('src') == '' || $(this).attr('src') == undefined){
			$(this).remove();
		}
	});
	
});


