// jQuery
$(document).ready(function(){
	// Transaction Table Sorter
	$("#trans_table").tablesorter({widgets: ['zebra'],
								  widthFixed: true,
								  headers:{
									  1:{ sorter: false}
								  }
	});
	
	// Tombstone slideshows (width and background-color defined by CSS)
	$('.tombstone_slides').cycle({pause:1,
						  timeout:5000,
						  height:'198px'}
	);
	
	// Quote slideshows
	$('.quote_slides').cycle({pause:1,
						  timeout:10000,
						  height:'300px'}
	);
	
	// Homepage slideshow
	/*
	$(function() {
		setTimeout(function(){
			$('#man').animate({opacity:0}, 1000, 
					  function(){
						  $('#man').remove();
					  });
		}, 5000);
		setTimeout(function(){
			if(document.getElementById('slides_caption')){
				document.getElementById('slides_caption').innerHTML = 'Click to View Case Study';
			}
		}, 2000);
	});
	*/
	$('#homepage_slides').cycle({
						  delay:5000,
						  pause:1,
						  timeout:5000,
						  height:'330px'}
	);
	
	// PopUp
	$("#popup_small a").hover(function(){   
		$(this).next("#popup_large").
		stop(true, true).
		animate({opacity: "show"}, "slow");},
				 function(){
					 $(this).next("#popup_large").
					 animate({opacity: "hide"}, "fast");   
	});
	
	// Drop Shadows
	$("#tombstone_shadow").dropShadow({left:4, top:4, blur: 2, opacity: .25});
	$("#portrait").dropShadow({left:4, top:4, blur: 2, opacity: .25});
});