		$(document).ready(function(){
			$("li.subitem").hover(
				function () {
					$(this).find("a.item").addClass('item-hover');
				},
				function () {
					$(this).find("a.item").removeClass('item-hover');
				});
		});

		$('.corner').corner();
	    $('.simple-corner').corner("5px");
	    $('.input-corner').corner("3px");
	    $('.corner-bottom').corner('bottom');
	    $('.corner-top').corner('top 5px');
	    $('.b-corner').corner('bottom 5px');
	    $('.r-corner').corner('right 5px');
	    $('.bl-corner').corner('left');
	    $('.br-corner').corner('right');   
	    $('#footer-links').corner('10px');
	    
	    $(function() {
			$('a[rel*=external]').click( function() {
			    window.open(this.href);
			    return false;
			});
	    });