/**
 * website.js
 */

var website = {
	
	init: function() {
		
	website.init_polaroids();
		
		$('a').click(function() {
			if( $(this).attr('href') == '#' ) {
				return false;
			}
		});
		
		/*
		Cufon.set('fontFamily', 'Dakota');
		Cufon.replace('.header-text');
		
		Cufon.set('fontFamily', 'Futura');
		Cufon.replace('.testimonial, h1, h2, h3, .headerSleeps, .header-tint');
		*/
		
		$('ul.navigation li').hoverIntent(function() {
			$(this).find('ul:first').slideDown('fast');
		}, function() {
			$(this).find('ul:first').slideUp('fast');
		});
		
	}
	
	,init_polaroids: function() {
		
		var average_width = 90;
		
		var container_width = $('.polaroids').width();
		var total_polaroids = $('.polaroids img').length;
		
		var counter=0;
		
		$('.polaroids a').each(function() {
			var left_offset = average_width * counter;
			var top_offset = 0;
			
			if( counter % 2 ) {
				var top_offset = 40;
			}
			

			
			$(this).animate({
				 left: left_offset + 'px'
				,top: top_offset + 'px'
			}, 1);
			
			counter++;
		});
		
		$('.polaroids a').mouseover(function() {
			
			$('.polaroids a').removeClass('over');
			$(this).addClass('over');
			
		});
		
		$('.polaroid').draggable({
			containment: '.wrapper'
		});
		
	}
	
};

$(document).ready(website.init);
