// Cufon Fonts
Cufon.replace('#logo h1, #footer h3, .body h4, .body figure figcaption, #respond h3, #comments h3, .archive-title', { hover: true,  fontFamily: 'Hand Of Sean'});
Cufon.replace('.buyTickets', { hover: true,  fontFamily: 'Hand Of Sean', textShadow: '#c8cf8e 1px 1px'});
Cufon.replace('.button, #respond .form-submit input', { hover: true,  fontFamily: '321impact', textShadow: '#000 1px 1px'});
Cufon.replace('.body h2, .body h3, .tabularData table th, .homeSidebar .widget-title, .insideSidebar .widget-title, .faq-question .termsHeading', { hover: true,  fontFamily: '321impact'});
Cufon.replace('.sidebarPageTitle', { hover: true,  fontFamily: '321impact', textShadow: '#000 1px 1px'});

// Jquery or JS Scripts
$(document).ready(function() {

	// Prinav
	$("#prinav li:first-child").addClass("first");
	$(".name").css("display", "block");
	$(".body div:last.testiPan").css("background", "none");
	
	// Sidebar Nav
	var sidebarNavSize = $("#sidebarNav li").size();
	//alert (sidebarNavSize);
	if (sidebarNavSize > 1) {
		$("#sidebarNav li:first-child").addClass("first");
		$("#sidebarNav li:last-child").addClass("last");
	} else if (sidebarNavSize > 0) {
		$("#sidebarNav li").addClass("single");
	}
	
	$("table th:first-child, table td:first-child").addClass("first");
	
	// For Figure 
	$('.body figure').append('<span class="figureShadowRight"></span><span class="figureShadowBottomLeft"></span><span class="figureShadowBottomRight"></span>');
	
	$('.tabularData').append('<span class="crocodilePic"><!-- Crocodile Pic --></span>');
	
	var insideSidebarHeight = $('.insideSidebar').height() + 160;
	$('.insideContainer').css('min-height',insideSidebarHeight);
	
});



// show hide div

$(document).ready(function(){

    $(".slidingDiv").hide();
	$(".show_hide").show();
	
	$('.show_hide').click(function(){
	$(this).parents('.sliWrap').children('.slidingDiv').slideToggle();
	
	return false;
	});

});



