/* from http://www.sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/ thx ! */
ul.thumbnails {
    list-style: none outside none;
    margin: 0;
    overflow: hidden;
    padding: 50px;
}
ul.thumbnails li {
    float: left;
    margin: 0;
    padding: 13px;
    position: relative;
}
ul.thumbnails li img {
    background: none repeat scroll 0 0 #F0F0F0;
    border: 1px solid #DDDDDD;
    left: 0;
    padding: 0px;
    position: absolute;
    top: 0;
	-ms-interpolation-mode: bicubic; /* IE Fix for Bicubic Scaling */
}
ul.thumbnails li img.hover {
box-shadow: 8px 8px 12px #878787;
}
.navigationBar {
    clear: left;
}