var $j = jQuery.noConflict();
$j(document).ready(function() {
	/*
	if ($j("#whole_site_container").hasClass("home")){
	
		selector_id = '#whats_new_ad'; 
		current = 0;
		max_li = $j("#whats_new_ad div:last").index() + 1;
		overmax_li = max_li + 1;
	
		$j("#whats_new_ad div").each(function (index) {
			div_num = index + 1;
			$j(this).addClass("slide_" + div_num);
		});
			
		function slider(current_overide) {
				current = current + 1;
				if(current == overmax_li){current = 1};
				slide_selector = '.slide_' + current;
				$j(slide_selector).animate({"left" : "0px"}, 900, "linear").animate({"left" : "0px"}, 1800, "linear").animate({"top" : "-300"}, 7000).animate({"left" : "-335px"}, 900, "linear").animate({"left" : "335px"}, 0).animate({"top" : "0"}, 0);
		}
		slider("test");
		rotating = setInterval(function() {
			slider("test");
			},7000)	
	}	*/
});


