$(document).ready(function () { $('.slideshow').cycle({ timeout: 10000, speed: 2000 }) }); $(function () { $(".Contact tbody tr").mouseover(function () { $(this).addClass("over") }); $(".Contact tbody tr").mouseout(function () { $(this).removeClass("over") }); $(".Contact tbody tr:odd").addClass("striped") }); $(function () { $("#accordion").accordion({ collapsible: true, active: false, header: "h3" }); $('#tabs').tabs(); $('#dialog').dialog({ autoOpen: false, width: 600, buttons: { "Ok": function () { $(this).dialog("close") }, "Cancel": function () { $(this).dialog("close") } } }); $('#datepicker').datepicker({ inline: true }); $('#slider').slider({ range: true, values: [17, 67] }); $('#dialog_link, ul#icons li').hover(function () { $(this).addClass('ui-state-hover') }, function () { $(this).removeClass('ui-state-hover') }) });
