﻿jQuery(document).ready(function () {
    $("#feedback_tab").fancybox({
        'transitionIn': 'none',
        'transitionOut': 'none',
        'autoScale': false,
        'type': 'iframe',
        'width': 500,
        'height': 460,
        'scrolling': 'no'
    });
});


function move_in(img_name, img_src) {
    document.images[img_name].src = img_src;
}

function move_out(img_name, img_src) {
    document.images[img_name].src = img_src;
}

$(document).ready(function() {
	// call the tablesorter plugin
	$("table.tablesorter").tablesorter({
		// sort on the first column and third column, order asc
		sortList: [[1,0]]
});

// basic show and hide
$('#additional-features').show();

$('#hide-additional-features').click(function() {
$('#additional-features').hide();
});
$('#show-additional-features').click(function() {
$('#additional-features').show();
});
$('#toggle').click(function() {
    $('div.showhide,h1').toggle();
});




});




