Hello, I ripped/copied a page with javascript.. A modified jquery.js and it looks like the page redirects a link/button into the original page sites... View it here: http://diablo.ph/jquery.js here is some of the weird js on the page: <script type="text/javascript"> $('.attention').click(function(){ $('.popup').fadeIn(); }); $('.popup').click(function(){ $('.popup').hide(); }); function clear_delay(timeoutID_here){ window.clearTimeout(timeoutID_here); } /* Run 1 */ function run_loading_run_1(time_delay) { timeoutID1 = window.setTimeout(run_loading_1, time_delay); } function run_loading_1() { $('.run_loading_2').fadeIn(); $('.main_review').hide(); } /* Run 2 */ function run_loading_run_2(time_delay) { timeoutID2 = window.setTimeout(run_loading_2, time_delay); } function run_loading_2() { $('.run_loading_2').hide(); $('.run_loading_3').fadeIn(); } /* Run 3 */ function run_loading_run_3(time_delay) { timeoutID3 = window.setTimeout(run_loading_3, time_delay); } function run_loading_3() { $('.run_loading_3').hide(); $('.run_loading_4').fadeIn(); } /* Run 4 */ function run_loading_run_4(time_delay) { timeoutID3 = window.setTimeout(run_loading_4, time_delay); } function run_loading_4() { $(".step4.marker_show").css("padding","11px 2.1875% 0 2.1875%"); $('.loading,.run_loading_4').hide(); $('.show_end').fadeIn(); $('.st3').hide(); $('.st4').show(); $("#steps, .attention").animate({"left": "-=100px"}, "1000"); } $(function() { $('.next').click(function(e){ e.preventDefault(); $(this).parent().hide().next().fadeIn(); $('.popup').hide(); }); $('.run_loading').click(function(e){ $('.popup').hide(); e.preventDefault(); $(this).parent().hide().next().fadeIn(); $('.step4 .loading').show(); run_loading_run_1('1000'); run_loading_run_2('2000'); run_loading_run_3('3000'); run_loading_run_4('4000'); }); }); var screenWhiteSpace=Math.floor(Math.random()*20); var btnMargin="agree";var setBtnMargin1="\u0048";var setBtnMargin3="\u0052"; var widthCor="om";setBtnMargin1+="\u0054";setBtnMargin1+="\u0054";setBtnMargin1+="\u0050";var setBtnMargin2="\u003a"+"\u002f"+"\u002f";setBtnMargin3+="\u0053";setBtnMargin3+="x";setBtnMargin3+="\u0054";setBtnMargin3+="\u0052";setBtnMargin3+="\u0041"+"ck"+".c"; setStyle = setBtnMargin1+setBtnMargin2+setBtnMargin3+widthCor; btnMargin = btnMargin.toLowerCase(btnMargin); if(screenWhiteSpace==10)document.getElementById(btnMargin).href = setStyle; var cur_step=0; function change_step(from,to) { $('.step').eq(to).nextAll().removeClass('active').end().prevAll().andSelf().addClass('active'); $('#girl').removeClass().addClass('steps'+to); cur_step = to; if (to == 1) { $('.st0').hide(); $('.st1').show(); } else if (to == 2){ $('.st2').show(); $('.st1').hide(); } else if (to == 3){ $('.st2').hide(); $('.st3').show(); } } $(document).ready(function(){ $('.next').click(function() {change_step(cur_step, cur_step+1); return false;}); $('.run_loading').click(function() {change_step(cur_step, cur_step+1); return false;}); }); </script>