function libAGENTURNET() {
	jQuery('#agentur_net').hover(
		function() {
			jQuery(this).find('ul li ul').show('slow');
		},
		function() {
			jQuery(this).find('ul li ul').hide('slow');
		}
	);
	
	jQuery('#agentur_net').click(
		function() {
			//alert(jQuery(this).find('a').attr('href'));
			//window.parent.location = jQuery(this).find('a').attr('href');
			window.open(jQuery(this).find('a').attr('href'));
		}
	);
}


function css(){
	jQuery("#aside .item:eq(0)").css({'background' : '#cccccc'});
	jQuery("#aside .item:eq(1)").css({'background' : '#dddddd'});
	jQuery("#aside .item:eq(2)").css({'background' : '#cccccc'});
	jQuery("#aside .item:eq(3)").css({'background' : '#dddddd'});
}

jQuery(document).ready(function() {
	libAGENTURNET();
	css();
});
