//Powers the image selector on the product-profile.php page.
function loadImage(index){
	
	//Get Full and Large image srcs
	var Full = $('#image'+index).attr("Full");
	var Large = $('#image'+index).attr("Large");
	
	//Change main image and zoom link
	$('#largeImage').attr('src',Large);
	$('#zoomImage').attr('href',Full);
	
}//end function

function rotateDesigners(pageStart){
	
	$.ajax({
		type:	"POST",
		url:	"php/run.php",
		data:	"function_name=grabDesignerLogos&param[0]="+pageStart,
		success:function(retval){
			$('#carousel-designers').html(retval);
		}
	});
	
}//end function

