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

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


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

}


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

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

	$("branding01").setAttribute("src","img/branding/branding04.jpg");
	//change the source of the branding image
	
	$("desc").innerHTML="";
	//change the text inside our description paragraph
	
	$("branding01").setAttribute("alt","branding4");
	//change the alt of the branding depending on image shown.
}	

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

	$("branding01").setAttribute("src","img/branding/branding05.jpg");
	//change the source of the branding image
	
	$("desc").innerHTML="";
	//change the text inside our description paragraph
	
	$("branding01").setAttribute("alt","branding5");
	//change the alt of the branding depending on image shown.
}

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

	$("branding01").setAttribute("src","img/branding/branding06.jpg");
	//change the source of the branding image
	
	$("desc").innerHTML="";
	//change the text inside our description paragraph
	
	$("branding01").setAttribute("alt","branding6");
	//change the alt of the branding depending on image shown.
}

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

	$("branding01").setAttribute("src","img/branding/branding07.jpg");
	//change the source of the branding image
	
	$("desc").innerHTML="";
	//change the text inside our description paragraph
	
	$("branding01").setAttribute("alt","branding7");
	//change the alt of the branding depending on image shown.
}

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

	$("branding01").setAttribute("src","img/branding/branding08.jpg");
	//change the source of the branding image
	
	$("desc").innerHTML="";
	//change the text inside our description paragraph
	
	$("branding01").setAttribute("alt","branding8");
	//change the alt of the branding depending on image shown.
}

}






