$(document).ready(function()
{
	
	$( 'ol.styled li, ul.styled li' ).each(function (i) 
	{
		i = i + 1;
		$(this).wrapInner( '<div class="listtext"></div>' );
		$(this).prepend( '<span class="listnum">' + i + '</span>' );
		$(this).addClass( 'clearfix' );
	});
	
	$( 'a.generic-button' ).each(function() 
	{
		$(this).wrapInner( '<span></span>' );									  
	});
	
	$( 'a.show-hide' ).click(function()
	{
		//$(this.hash).show();
		
		$( this.hash ).toggle();
		
		if( $( this ).text() == 'Show' ) {
			$( this ).text( 'Hide' );
		} else {
			$( this ).text( 'Show' );
		}
		return false;
	});
		
	$( 'a.image_preview' ).fancybox(); 	
			
});