$(document).ready(function(){$("#demo-watch").live("click",function(){$("#intro").hide();$("#demo").show();return false});$("#demo-close .button_small").live("click",function(){$("#intro").show();$("#demo").hide();return false});$("#signup-compare-toggle").toggle(function(){$("#signup-compare div.message").css("color","#999999");$("#signup-compare").toggleClass("open");$(this).text("Close");$("#signup-compare div.details").slideDown();return false},function(){$("#signup-compare div.message").css("color",
"#FF0099");$("#signup-compare").toggleClass("open");$(this).text("Compare");$("#signup-compare div.details").slideUp();return false});$(window).bind("resize",function(){resizeWindow(".container")});resizeWindow(".container")});function resizeWindow(b){var a=$(window).width()-$(b).width()-250;a=Math.round(a/125)*125;$(b).css({left:a})};

