$(document).ready(function() {
      $("#menu ul li").hover(function() { //Hover over event on list item
		$(this).find("a.lk").css('background' , '#780e11');
		$(this).find("ul").fadeIn(200, function() {
                                            if (jQuery.browser.msie && (parseInt($(this).css('opacity'), 10) === 1 || parseInt($(this).css('opacity'), 10) === 0)) {
                                            this.style.removeAttribute('filter');
                                            }
      						});
	} , function() { //on hover out...
	    $(this).find("a.lk").css('background' , 'none');
		$(this).find("ul").fadeOut(200, function() {
                                            if (jQuery.browser.msie && (parseInt($(this).css('opacity'), 10) === 1 || parseInt($(this).css('opacity'), 10) === 0)) {
                                            this.style.removeAttribute('filter');
                                            }
                    		});
	});
	$(".colorbox").colorbox();
});

					$(window).load(function() {
						$('#slideShowWrap').nivoSlider({
							effect:'random', //Specify sets like: 'fold,fade,sliceDown'
							slices:30,
							animSpeed:600, //Slide transition speed
							pauseTime:5000,
							startSlide:0, //Set starting Slide (0 index)
							directionNav:false, //Next &amp; Prev
							directionNavHide:false, //Only show on hover
							controlNav:false, //1,2,3...
							controlNavThumbs:false, //Use thumbnails for Control Nav
						    controlNavThumbsFromRel:false, //Use image rel for thumbs
							controlNavThumbsSearch: '.jpg', //Replace this with...
							controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src
							keyboardNav:false, //Use left &amp; right arrows
							pauseOnHover:false, //Stop animation while hovering
							manualAdvance:false, //Force manual transitions
							captionOpacity:0.8, //Universal caption opacity
							beforeChange: function(){},
							afterChange: function(){},
							slideshowEnd: function(){} //Triggers after all slides have been shown
						});
					});

				
