(function ($) {
	$(function () {
		var primaryNavigation = $('#header ul.navigation');
		if (!($.browser.msie && $.browser.version == '6.0')) {
			$('li:has(ul) > a', primaryNavigation).each(function () {
				$(this).append($('<span class="cover">&nbsp;</span>'));
			});
		}
		
		$('#primaryContent .content .section-roll > div, #primaryContent .content .news-hover')
			.addClass('.roundify-7')
			.bind('mouseover', function () {$(this).addClass('hover');})
			.bind('mouseout', function () {$(this).removeClass('hover');});		
	});
})(jQuery);
