// JavaScript Document

$(document).ready(function(){
										  
	zebra_table() //call function zebra table
	$('#main_nav').superfish();
	
	
	$('#main_nav li.fl_li').each(function(i) {
		
		var title = $(this).children().eq(0).text();
		$(this).children().eq(0).html('<span class="nav_image"></span><span class="nav_text">' + title +'</span>');
		
	});
	
	$('#main_nav .sub_nav').each(function(i) {
		$(this).addClass('clearfix');
	});
	
});



function zebra_table(){ //zebra table

	$('tbody tr:nth-child(odd)').addClass('odd');
  
}



Cufon.replace('.font_cd, .basic_style_1 h2, .basic_style_1 h3, .basic_style_1 h3, .basic_style_1 h4, .basic_style_1 h5, #the_list li h3, .list_page_title', { fontFamily: 'Font Caviar Dreams' });
