function carofmonth()
{
	// Whats the month
	now = new Date();
	var monthnumber = now.getMonth();
	monthnumber = monthnumber + 1;

	// Change image
	imagename = "images/new/car_of_month/" + monthnumber + ".jpg";
	document['carofthemonth_image'].src = imagename;

	// Change pdf
	pdfname = "pdf/car_of_month/" + monthnumber + ".pdf";
	document.getElementById('carofthemonth_pdf').href = pdfname;
}
