$(document).ready(function() {
							$('.dropdown').hide();
							$('#mainNav li').addClass('buttonOff');
$('#mainNav li').click(function() {
									$('#mainNav li:eq(0)').removeClass('buttonOff');
									$('#mainNav li:eq(0)').addClass('buttonOn');
									$(this).children('.dropdown').toggle('slow');
									});
									
//now grab the price grab
$priceGrabHtml = $('span.priceGrab');
htmlGot = $priceGrabHtml.html();
if(htmlGot != undefined)
{
htmlArray = htmlGot.split("/");
newText = "<span class='firstPriceGrab'>"+htmlArray[0]+"</span><br><span class='secondPriceGrab'>"+htmlArray[1]+"</span>";
$priceGrabHtml.html(newText);

}

});
$(document).ready(function(){
						   $('.reallyShow').show();
						   });