  jQuery.noConflict();
  jQuery(document).ready(function(jQuery) {
		

			jQuery('#shops').innerfade({
				speed: 'slow',
				type: 'random_start',
				containerheight: 'auto'
			});

	jQuery('#shops2').innerfade({
				speed: 'slow',
				type: 'random_start',
				containerheight: 'auto'
			});
			
	jQuery('#shops3').innerfade({
				speed: 'slow',
				type: 'random_start',
				containerheight: 'auto'
			});
	jQuery('#shops4').innerfade({
				speed: 'slow',
				type: 'random_start',
				containerheight: 'auto'
			});
	jQuery('#shops5').innerfade({
				speed: 'slow',
				type: 'random_start',
				containerheight: 'auto'
			});
	
	jQuery('#specials2').innerfade({
				speed: 'slow',
				type: 'random_start',
				containerheight: 'auto'
			});
		
		}
	);

this.randomtip = function(){
	var length = jQuery("#spe1cials div.blog-post").length;
	var ran = Math.floor(Math.random()*length);
		
	var numarray =[]
	for(var i=0;i<jQuery("#specials1 div.blog-post").length; i++){
	  numarray.push(i)
	}
	numarray.splice(ran,1)
	var ran2i = Math.floor(Math.random()*numarray.length);
	var ran2 = numarray[ran2i]
	jQuery("#specials1 div.blog-post:eq(" + ran + ")").show();
	jQuery("#specials1 div.blog-post:eq(" + ran2 + ")").show();

};

jQuery(document).ready(function(){	
	randomtip();
});

