// JavaScript Document
window.onload=function() {

//javascript for image
$("image1").onclick=function() {
	
	$("art01").setAttribute("src","img/art/artd01.jpg");
	//change the source of the art image
	
	$("desc").innerHTML="";
	//change the text inside our description paragraph
	
	$("art01").setAttribute("alt","idea1");
	//change the alt of the art depending on image shown.
}


//javascript for sunset image
$("image2").onclick=function() {
	
	$("art01").setAttribute("src","img/art/artd02.jpg");
	//change the source of the art image
	
	$("desc").innerHTML="";
	//change the text inside our description paragraph
	
	$("art01").setAttribute("alt","idea2");
	//change the alt of the art depending on image shown.

}


//javascript for utensils image
$("image3").onclick=function() {

	$("art01").setAttribute("src","img/art/artd03.jpg");
	//change the source of the art image
	
	$("desc").innerHTML="";
	//change the text inside our description paragraph
	
	$("art01").setAttribute("alt","art3");
	//change the alt of the art depending on image shown.
}
	
//javascript for utensils image
$("image4").onclick=function() {

	$("art01").setAttribute("src","img/art/artd04.jpg");
	//change the source of the art image
	
	$("desc").innerHTML="";
	//change the text inside our description paragraph
	
	$("art01").setAttribute("alt","art4");
	//change the alt of the art depending on image shown.
}	

//javascript for utensils image
$("image5").onclick=function() {

	$("art01").setAttribute("src","img/art/artd05.jpg");
	//change the source of the art image
	
	$("desc").innerHTML="";
	//change the text inside our description paragraph
	
	$("art01").setAttribute("alt","art5");
	//change the alt of the art depending on image shown.
}



}






