$(document).ready(function() {
    var page = $('#page').val();
    var id = $('#id').val();
	var int = $("#int");

	stopCycle();
	r = false;
	
	$.ajax({
		url: 'response.php',
		type: 'GET',
		data: {'page' : page, 'id' : id},
		dataType: 'text',
		success: function(data){ 
            setTimeout(function(){
			$("#news").css("display", "none");
			$("#news-photo").css("display", "none");
			$("#news-tabs").css("display", "none");

            int.height(0).animate({ opacity: 'show', height: '+=433px' }, 500).append('<div id="int-text" />');
			$("#int-text").css({ height: 0 }).html(data);
			$("#int-text").fadeIn("slow");
		},1000);}
    });
});
