$(document).ready(function() {



	$('div#body-1 div table tr td table tr td.gg').remove();
	$('div#body-1 div table	tr td.g').parent().remove();

	var rand_no = Math.floor(Math.random()*5);

	var kids = $('div#body-1 div table tr td table tr td a.rw').parent().parent().parent().parent().parent().parent().children();
	var item_count = kids.length;
	
	kids.removeAttr("width");
	kids.css("display", "none");
	kids.eq(rand_no).css("display", "block");
	kids.eq(rand_no).addClass('featured');
	kids.eq(rand_no).addClass('feature'+rand_no);


	var link = kids.eq(rand_no).find('a.rw').attr("href");
	var name = kids.eq(rand_no).find('a.rw').text();
	var price = kids.eq(rand_no).find('table tr span.our').text();	
	

	var div_left = "<a href='"+link+"'>"+name+"</a><br/><span class='price'>"+price+"</span>";
	var div_right = "<a href='"+link+"'><img style='position:relative;max-width:145px;top:212px;width:165px;height:42px;' src='http://feature.atlrec.com/upped/vivalarock/blank.gif' /></a>";

	var new_html = "<div class='feature"+rand_no +"' id='featured'><div class='featured_left'>"+div_left+"</div><div class='featured_right'>"+div_right+"</div></div>";
	

	$('div#body-1').html(new_html);
	$('div#body-1').show();


});
