/* Homework 7 assignment create image rollover effects, drop-down menu,
IE-specific CSS and IE conditional.
Name: Jade Holt
date: April 24,2020
*/
/*adding two images rollover */
.cover{
	width:100px;
	height:100px;
	background:url(images/bookcover.jpg) no-repeat ;
}
.cover a:active{
	background:url(images/bookcover.jpg);
}
.pod{
	width:100px;
	height:100px;
	background: url(images/2tri.jpg) no-repeat;
}
.pod a:hover{
	background:url(images/2tri.jpg);
	
}
/* Drop down menu with the class menu*/
.menu{
	overflow:hidden;
	height:10px;
	opacity:1;
	float:none;
	padding:12px 16px;
	text-align:left;
	display:block;
	font-size:20px;
	font-weight:bold;
}

.menu:hover{
	height:auto;
	color:rgb(120,155,0);/*green*/
	display:block;
}
