jQuery(function(){

	/* BEGIN THUMB ACTION INITIALIZATION */

	jQuery('body.archive #content #sb li, body.on-the-boards #content #sb li, body.portfolio #content #sb li, body.profile #content #sb li').hover(function(){
		var listy = jQuery('#sb li');
		var opaz = listy.index(this)-1;
		jQuery('#thumbs li:eq('+opaz+')').addClass('selectedDude');
	}, function(){
		jQuery(document).find('.selectedDude').removeClass('selectedDude');		
	});
	
	jQuery('body.archive #content #thumbs li, body.on-the-boards #content #thumbs li, body.portfolio #content #thumbs li, body.profile #content #thumbs li').hover(function(){
		var listyy = jQuery('#thumbs li');
		var opazy = listyy.index(this)+1;
		jQuery('#sb li:eq('+opazy+') a').addClass('selectedLinky');		
	}, function(){
		jQuery(document).find('.selectedLinky').removeClass('selectedLinky');		
	});

	/* END THUMB ACTION INITIALIZATION */
	
});
