$(document).ready(function(){
	$("#navNews, #navProduct, #navServices, #navDownload, #navAbouts").mouseover(function(){
		$(this).removeClass('hideSMenu').addClass('showSMenu');
		$('#'+this.id+' div.sNav a:first').css('border-width','0 0 1px 0');
		$('#'+this.id+' div.sNav a:last').css('border-width','1px 0 0 0');
	}).mouseout(function(){
		$(this).removeClass('showSMenu').addClass('hideSMenu');
	});
	//==================================
	$('div.boxCt.category div.cat:first').css('border-width','0 0 1px 0');
	$('div.boxCt.category div.cat:last').css('border-width','1px 0 0 0');
	//==================================	
});
