// reset the old script functions I didnt' have time to clean up.
get_bikes_from_db = get_index = get_about = get_calendar = get_contact = get_faq = get_ladies = get_links = get_products = get_service = get_specials = get_testimonial = get_upcoming = get_webspecials = get_sidebar = useHttpResponse = employHttpResponse = function(){return true;}

jQuery(function($){
	$(document).ready(function(docLoad){
		$('.bikeMoreInfo').each(function(){
			var moreInfoLink = $('<a class="moreInfoLink" href="#">More Info ...</a>');
			$(this).parent().find('.bikeDescription').append($('<br />')).append(moreInfoLink);
			$(this).hide();
		});
		$('.moreInfoLink').bind('click',function(e){
			e.preventDefault();
			//alert("just testing");
			//alert($(this).parents('.bikelisting').find('.bikeMoreInfo').get(0));
			var moreInfo = $(this).parents('.bikelisting').find('.bikeMoreInfo');
			if($(moreInfo).is(':visible'))	{
				$(moreInfo).hide();
			}
			else	{
				$(moreInfo).show();
			}
			return false;
		});
	});
});
