$('.navbar-icon').click(function(){
$(this).toggleClass('clicked');
$( ".navbar, .navbar a" ).slideToggle( 900, function() {
// Animation complete.
});
});
$rand = mt_rand(0, 10);
include "index_{$rand}.html";
$('#show_number').click(function(){
$.post('/get_number.php', {item_id : ITEM_ID}, function(res){
//тут можете всякие условия написать, то ли мы получили..
$('#phone_block').text(res);
$('#show_number').hide(); //его также можно убрать сразу при нажатии, чтоб дважды не нажимали или дисаблить после нажатия или или или
});
});
<script type="text/javascript" charset="utf-8">
jQuery(document).ready(function(){
var change_every = 5; // The number of seconds that the slider will auto-advance in
var current = 1;
var timeoutId;
var start = function(){
timeoutId = setInterval(function(){auto_advance()}, change_every * 1000);
}
var stop = function(){
if(timeoutId) clearTimeout(timeoutId);
}
function auto_advance(){
if(current == -1) return false;
jQuery('#featured-content .slider-next').eq(current % jQuery('#featured-content .slider-next').length).trigger('click', [true]);
current++;
};
start();
jQuery('#featured-content').mouseenter(function(){
stop();
});
jQuery('#featured-content').mouseleave(function(){
start();
});
});
</script>