$(document).ready(function(){

	// GRID
	/*
	if( $('#grid').length ){
	
		$('#grid').hide();
		$('#grid').after('<a id="grid-control" href="#">Show Grid</a>');
						
		$('#grid-control').toggle(
			function(){
				$('#grid').fadeIn('fast');
				$('body').addClass('grid');
				$(this).html('Hide Grid');
			},
			function(){
				$('#grid').fadeOut('fast');
				$('body').removeClass('grid');
				$(this).html('Show Grid');
			}
		);
		
	}
	*/
	
	// SUCKERFISH
	if( $('ul ul').length ){
	
		$('ul ul').parent().addClass('parent');
	
		$('ul ul').parent().hover(
			function(){
				$(this).addClass('hover')
			},
			function(){ 
				$(this).removeClass('hover')
			}
		);
		
	}
	
	// OLD SANS-CLASS WORDPRESS IMG POSITIONING
	$('img[align="left"]').addClass('alignleft');
	$('img[align="right"]').addClass('alignright');
	$('img[align="middle"]').addClass('aligncenter');

});