// Home page javascript function

$(document).ready(function(){

	$(".btn-slide").click(function(){
	  $("#panel").slideToggle("slow");
	  $(this).toggleClass("active");
	});

});

$(function(){
	// Tabs
	$('#tabs').tabs();

});
//only show the whole tab div when the document has loaded jQuery, this makes everything look a bit nicer...
$(document).ready(function()
{
	$('#tabs').css('visibility', 'visible');
});

