// javascript that is not theme-specific should go in this file.

function jump(select_element, target_frame)
{
	eval(target_frame+".location='"+select_element.options[select_element.selectedIndex].value+"'");
}

/*slide panel*/
jQuery(document).ready(function()
{
	jQuery(".btn-slide").click(function()
	{
		jQuery("#panel").slideToggle("slow");
		jQuery(this).toggleClass("active");
		return false;
	});
});
