$(document).ready(function () {
    $('a.iframe').click(function () {
        $('#buy-now-button').fadeIn();
    });
    $("#offer-button").mouseout(function () {
        $("#offer-button").css("background", "url(/img/content/next_button.png")
    });
    $("#offer-button").mouseover(function () {
        $("#offer-button").css("background", "url(/img/content/next_button_hover.png");
    });
  

	$("#start-here").delay(900).fadeIn(400);	
});
