$(document).ready(function() {
	$('#tabvanilla > ul').tabs();
	$('#featuredvid > ul').tabs();
});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".block").show(); 

	//Switch the "Open" and "Close" state per click
	$("h2.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$("h2.trigger").click(function(){
		$(this).next(".block").slideToggle("fast");
	});

});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load

	//Switch the "Open" and "Close" state per click
	$(".trigger2").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$(".trigger2").click(function(){
		$(this).next(".block2").slideToggle("fast");
	});

});


function toggleSelect()
{
	if (document.getElementById("chk1").checked == true)
	{	
		document.getElementById("customfields-s-list-10").value="99";
		document.getElementById("customfields-s-list-10").disabled = true;
	}
	else
	{document.getElementById("customfields-s-list-10").disabled = false;	}
}