// 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,
						  width:'210px',
						  height:'300px',
						  cleartype:1,
						  cleartypeNoBg:true}
	);
	
	// Homepage slideshow
	$('#homepage_slides').cycle({
						  delay:5000,
						  pause:1,
						  timeout:5000,
						  height:'199px'}
	);
	
	// 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});
});
