$(document).ready(function() { $(".pdf_title").mouseover(function(){ $(this).css('cursor','pointer'); }); $("#back_to_step_8").mouseover(function(){ $(this).css('cursor','pointer').css('text-decoration','none'); }); $("#back_to_step_8").click(function(){ showQuestion('#question7'); }); $("#back_to_step_8").mouseout(function(){ $(this).css('text-decoration','underline'); }); $(".info_icon").mouseover(function(){ $('.rollover').show(); }); $(".info_icon").mouseout(function(){ $('.rollover').hide(); }); $("#remind_me").mouseover(function(){ $(this).css('cursor','pointer'); }); $("#remind_me").click(function(){ $('#login_box').hide(); $('#password_reminder').show(); }); $("#login_me_in").mouseover(function(){ $(this).css('cursor','pointer'); }); $("#login_me_in").click(function(){ $('#password_reminder').hide(); $('#login_box').show(); }); }); function showlist(title,toShow){ $(toShow).slideToggle("slow"); $(title).toggleClass("pdf_title_hover"); } function changetext(toShow){ $('.register_list').hide(); $(toShow).show(); } function showQuestion(toShow){ $('.questions').hide(); $(toShow).show(); }