$(document).ready(function(){
	//Setup the main rotater on the home page
	$('#divSimpleSlider').cycle({
	speed:       800,
	timeout:     4000,
	pager:		'.paging ul',
	pagerEvent: 'mouseover',
	fastOnEvent: false
	});
});
	
		$(document).ready(function(){
	//Setup the main rotater on the home page
	$('#divSimpleSlider01').cycle({
	speed:       800,
	timeout:     4000,
	pager:		'.paging ul',
	pagerEvent: 'mouseover',
	fastOnEvent: false
	});
	
	
	
var a,d,c;
a=$(window).width()
c=a-1000;
d=c/2+'px';
$('.right_container').css('right',d)
$(window).resize(function() {
    a=$(window).width()
     c=a-990;
    d=c/2+'px';
  $('.order_now_inner .right_container').css('right',d)
});

var fixed = false;

$(window).scroll(function() {
  if( $(this).scrollTop() >= 617 ) {
	  if( !fixed ) {
		  fixed = true;
		  $('.right_container').css({position:'fixed',top:20}); 
	  }
  } else {
	  if( fixed ) {
		  fixed = false;
		  $('.right_container').css({position:'static'});
	  }
  }
});

	
});

