$(function() {
    $("#Controller").jFlow({
        slides: "#slides",  // the div where all your sliding divs are nested in
        controller: ".jFlowControl", // must be class, use . sign
        slideWrapper : "#jFlowSlide", // must be id, use # sign
        selectedWrapper: "jFlowSelected",  // just pure text, no sign
		auto: false,		//auto change slide, default true
		width: "808px",  // this is the width for the content-slider
        height: "205px",  // this is the height for the content-slider
        duration: 500,  // time in miliseconds to transition one slide
        prev: ".jFlowPrev", // must be class, use . sign
        next: ".jFlowNext" // must be class, use . sign
    });
});

$(function() {
	$("td,label,input,textarea,select").hover(function() {
		$(this).parent().addClass("hover");
    }, function() {
        $(this).parent().removeClass("hover");
	});
});
