$(document).ready(function(){
	$("#artist_rec").click(function(){
	// load home page on click
		$("#content_left").load("includes/registration/index_pg.php?type=artist_rec");
	});
	$("#artist_pub").click(function(){
	// load about page on click
		$("#content_left").load("includes/registration/index_pg.php?type=artist_pub");
	});
	$("#company_ad").click(function(){
	// load contact form onclick
		$("#content_left").load("includes/registration/index_pg.php?type=company_ad");
	});
	$("#company_tv").click(function(){
	// load home page on click
		$("#content_left").load("includes/registration/index_pg.php?type=company_tv");
	});
	$("#buyers").click(function(){
	// load home page on click
		$("#content_left").load("includes/registration/index_pg.php?type=buyers");
	});
});
