////////////////////////////////////////////////////////////////////////////////
// brooke.js 
//

	$(document).ready(function() {
		
		// SHOP - Thumbnails
		if( $("#shop_thumbs").length > 0 )
		{
			$("#shop_thumbs").find( "img" ).each( function() {
			
				$(this).css( "cursor", "pointer" );
				var img = $(this);
				$(this).click( function() {
				
					$("#fImage").find( "img" ).hide( "slow", function() {
						var h = img.attr( "height" ) * 350 / 45;
						$("#fImage").find( "img" ).attr( "src", img.attr( "src" ).toString().replace( "thumbs/", "" ) );
						$("#fImage").find( "img" ).attr( "height", h );
						
						$("#fImage").find( "img" ).show( "slow" );					
					});
					$("#fDesc").html( $(this).attr( "rel" ) );
					
				});
			
			});
		}
		
	});
	// -----------------------------------------------------------------------------	
	
//
////////////////////////////////////////////////////////////////////////////////
