/*******************************************************************
**--> Intro: For Lizus Customize WordPress Themes
**--> Author: lizus.com@gmail.com
**--> WebSite: http://www.lizus.com
*******************************************************************/

$(function ()
{
	$('#nav a').each(function(){
		var html=$(this).html();
		$(this).html('<span>'+html+'</span>');
	});
});

$(function(){
	$('#c_list .wp-tag-cloud:first').attr('id','ul_tag');
});

$(function(){
	$('#f_bar ul:first').show();
	$('#f_bar h2:first span:first').addClass('current');
	$('#f_bar h2:first span').bind('mouseover',function(){
		$(this).siblings().removeClass('current');
		$(this).addClass('current');
		$('#f_bar ul').hide();
		$('#ul_'+$(this).attr('id')).show();
	});
});