$(document).ready(function() {


	$('#nav li.headlink').hover(
		function () { 
			$(this).addClass('hover');
			$('a', this).addClass('hover');
			$('ul', this).css('display', 'block');
			}, 
		function () { 
			$(this).removeClass('hover');
			$('a', this).removeClass('hover');
			$('ul', this).css('display', 'none');
			}
		);

	$('#nav li:first').addClass('firstli');
	$('#nav li:last').addClass('lastli');
	
	$('#promos .block:last').addClass('lastblock');
	
	$('.footerinside ul li:last').addClass('lastfooterli');

	$('blockquote').corner("10px");
});