// JavaScript Document
$(window).load(function() {						
	var total = $('#slider img').length;
	var rand = Math.floor(Math.random()*total);
	$('#slider').show()
	$('#slider').nivoSlider({
		effect:'sliceDownLeft',
		captionOpacity:0.65,
		directionNavHide:false, //Only show on hover
		controlNav:false,
		startSlide: rand,
		pauseTime:31500
	});	
	
	
	$('.hoverPic').hover(
		function (e) {			
			var x = e.pageX;
			var y = e.pageY - 130;
			$('.'+$(this).attr('id')).css('left', x);
			$('.'+$(this).attr('id')).css('top', y);			
			$('.'+$(this).attr('id')).css('display', 'block');
		},
		function() {
			$('.' + $(this).attr('id')).hide();			
		}
		);
});



