////////////////////////////////////////////////////////////////////////////////
// aggies.js
//

	$(document).ready( function() {
	
		// Flash?
		$(".header").flash({
			src: "swf/flashheader.swf",
			width: 898,
			height: 230,
			wmode:"transparent"
		});
		
		// Gallery?
		if( $("#gallery_thumbs").length > 0 )
		{
			$("#gallery_thumbs img").click( function() {
			
				// Click
				var elem = $(this );
				$("#gallery_image img:first").fadeOut( "fast", function() { $("#gallery_image img:first").attr( "src", elem.attr( "src" ).replace( "thumbs/", "" ) ); } );		
				//$("#gallery_image img:first").fadeIn( "slow" );
				$(this).prevAll().hide( "slow", function() {
					
					$(this).insertAfter( $("#gallery_thumbs img:last" ) );
					$(this).show();
				} );
				
			});
			
			$("#gallery_image img:first").load( function() { $(this).fadeIn( "slow" ); } );
			$("#gallery_image img:first").attr( "src", $("#gallery_thumbs img:first").attr( "src" ).replace( "thumbs/", "" ) );
		}
	
	});

//
//
////////////////////////////////////////////////////////////////////////////////