// For IE hover flicker bug
try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

// Hello jQuery!
$(document).ready(function(){

// Gallery Nav Hover
	$(".dropdown").mouseover(function() {
		$(this).addClass("hoverShow");
	});
	$(".dropdown").mouseout(function() {
		$(this).removeClass("hoverShow");
	});


}); // Bye-bye jQuery!
