jQuery.noConflict();


jQuery(document).ready(function($) {

  var shift = -330;
  function shiftBubbles() {
    $("#container3").css({
      backgroundPosition: ' 0' + shift + 'px'
    });
    shift -= 1;
  }
  var timer = setInterval(shiftBubbles, 100);

	if ((!$.browser.msie || $.browser.version.substr(0,1) != '6') && typeof CFCT_AJAX_LOAD != 'undefined' && CFCT_AJAX_LOAD) {
		cfct.ajax_post_content();
		cfct.ajax_post_comments();
	}
});


