/* * * * * * * * * * * * *

   Stewdio S2 Extension
   © 2009 Stewdio
   All Rights Reserved

* * * * * * * * * * * * */




function Stewdio() {};
(function()
{
	window.s2 = {

	
		boot: function()
		{

			//  Separate Internal and External Links
			
			$( "a[href^='http://']" )
				.not( "a[href^='http://www.stewdio.org']" )
				.not( "a[href^='http://stewdio.org']" )
				.addClass( "ext" );
			$( "a.ext" ).attr( "target", "_blank" );


			//  Mark items Reserved, Sold, Donated

			$( ".reserved" ).prepend( '<img class="sold" src="med/sold.png" />' );
			$( ".reserved .price" ).html( "RESERVED" );

			$( ".sold" ).prepend( '<img class="sold" src="med/sold.png" />' );
			$( ".sold .price" ).html( "SOLD" );

			$( ".donated" ).prepend( '<img class="sold" src="med/sold.png" />' );
			$( ".donated .price" ).html( "DONATED" );

			return this;
		}


	};
})();
$( window ).bind( "load", function()
{
	s2.boot();
});

