// Cufon script

Cufon.replace('.bodyCont h1, .bodyCont h2, .bodyCont h3, .bodyCont p span', { fontFamily:'Eurostile', hover: true });

Cufon.replace('em', { fontFamily: 'Garamond', hover: true });

// Jquery script
$(document).ready(function() {
	$('.bottomThumbs li:last-child').css('padding-right', '0');
	$('.footer ul li:first-child').css({
		'padding-left': '0',
		'background': 'none'
	});
	
});


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

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


