// JavaScript Document

//// Drop Down
$(document).ready(function(){

$('#nav ul li').hover(
function () {
	$(this).addClass('active');
	$(this).children('ul').fadeIn('fast');
},
function () {
	$(this).removeClass('active');
	$(this).children('ul').fadeOut();
}
);

$('.breadcrumb ul li:last').css('background','none');


});
