$(function(){

	$('.tip').qtip({
		position: {
			adjust: {
				screen: true
				}
			},
		style: { 
			tip: true,
			name: 'cream'
		},
		show: { 
			solo: true,
			when: {
				event: 'mouseover'
			}
		}
	})
	
	// Image rollovers
	$('img.rollover').hover(
		function(){ 
			var t = $(this);
			t.attr('src',t.attr('src').replace(/([^.]*)\.(.*)/, "$1_over.$2"));
		},
		function(){ 
			var t= $(this);
			t.attr('src',t.attr('src').replace('_over',''));
		}
	);
	// reset on click
	$('img.rollover').click(
		function(){ 
			var t= $(this);
			t.attr('src',t.attr('src').replace('_over',''));
		}
	);
	// end rollover effect
	
	// --------- Quote randomization
	
	var quotes = new Array();
	quotes[0] = '&quot;Almost all creativity involves purposeful play.&quot;<br /><br /><span>- Abraham Maslow,<br />American psychologist 1908-1970</span>';
	quotes[1] = '&quot;They may forget what you said, but they will never forget how you made them feel.&quot;<br /><br /><span>- Carl Buechner</span>';
	quotes[2] = '&quot;Nothing without Joy&quot;<br /><br /><span>-Loris Malaguzzi,<br />Father of the Reggio Emilia</span>';
	quotes[3] = '&quot;We worry about what a child will become tomorrow, yet we forget that he is someone today.&quot;<br /><br /><span>- Stacia Tauscher,<br />Author</span>';
	quotes.sort(function() {return 0.5 - Math.random()})
	
	$('.message p').html(quotes[0]).fadeIn("slow");

	// --------- End Quote randomization
	
	// ---------  photo slideshow
	
	// load photos
	var pictures=new Array();
	pictures[0] = '/images/photos/photo_01.jpg';
	pictures[1] = '/images/photos/photo_02.jpg';
	pictures[2] = '/images/photos/photo_03.jpg';
	pictures[3] = '/images/photos/photo_04.jpg';
	pictures[4] = '/images/photos/photo_05.jpg';
	pictures[5] = '/images/photos/photo_06.jpg';
	pictures[6] = '/images/photos/photo_07.jpg';
	pictures[7] = '/images/photos/photo_08.jpg';
	pictures[8] = '/images/photos/photo_09.jpg';
	pictures[9] = '/images/photos/photo_10.jpg';
	pictures[10] = '/images/photos/photo_11.jpg';
	pictures[11] = '/images/photos/photo_12.jpg';
	pictures[12] = '/images/photos/photo_13.jpg';
	pictures[13] = '/images/photos/photo_14.jpg';
	pictures[14] = '/images/photos/photo_15.jpg';
	pictures[15] = '/images/photos/photo_16.jpg';
	pictures[16] = '/images/photos/photo_17.jpg';
	pictures[17] = '/images/photos/photo_18.jpg';
	pictures[18] = '/images/photos/photo_19.jpg';
	pictures[19] = '/images/photos/photo_20.jpg';
	pictures[20] = '/images/photos/photo_21.jpg';
	pictures[21] = '/images/photos/photo_22.jpg';
	pictures[22] = '/images/photos/photo_23.jpg';
	pictures[23] = '/images/photos/photo_24.jpg';
	//pictures[24] = '/images/photos/photo_25.jpg';
	
	// preload images
	
	$.loadImages(pictures);

	// randomize picture order & load first image
	var transitionSpeed = 1000;
	var transitionInterval = 5000;
	
	pictures.sort(function() {return 0.5 - Math.random()})
	var counter = 0;
	$('.photo_image').attr("src",pictures[counter]);
	$('.photo_image').fadeIn(transitionSpeed);
	
	counter = 1;
	setInterval(function(){
		$('.photo_image').hide(0,
			function(){
				$('.photo_image').attr("src","");
				$('.photo_image').attr("src",pictures[counter]);
			}
		);
		//console.log(counter + " - " + pictures[counter]);
		$('.photo_image').fadeIn(transitionSpeed);
		if (counter >= (pictures.length-1)) { counter = 0 } else { counter +=1 };
	}, transitionInterval);

	// ------  end photo slideshow
	
	// tweet link color on hover and follow link on click
	$('.sidebar li').hover(function(){
		$(this).find('a').css('color','#fff');
	},
	function(){
		$(this).find('a').css('color','#000');
	});
	
	// divider auto size
	function divider_resize() {
		$('.divider').height($('.maincontent').height() + 50);
	}
	divider_resize();
});

