// JavaScript Document

$(document).ready(function() {

	$('#menu ul li:has(ul li a)').hover(function(){
		$(this).find('ul').css('display','block');
	},
	function(){
		$(this).find('ul').css('display','none');
	});
	
	
	$('img').each(function(){
		if( $(this).attr('border') &&  $(this).attr('border') > 0 ){
			$(this).css( 'border', $(this).attr('border') + 'px solid black' );
		}
	});

});

