$(document).ready(function(){
	$(".cscsub").hide();
	$(".cschover").hoverIntent(mostrarcsc, escondercsc);
	
	$(".ofertasub").hide();
	$(".ofertahover").hoverIntent(mostraroferta, esconderoferta);
	
	$(".publisub").hide();
	$(".publihover").hoverIntent(mostrarpubli, esconderpubli);
	
    return false
});

function mostrarcsc(){  $(".cscsub").slideDown(100,"easeInOutExpo");}
function escondercsc(){ $(".cscsub").slideUp(100,"easeInOutExpo");}

function mostraroferta(){  $(".ofertasub").slideDown(100,"easeInOutExpo");}
function esconderoferta(){ $(".ofertasub").slideUp(100,"easeInOutExpo");}

function mostrarpubli(){  $(".publisub").slideDown(100,"easeInOutExpo");}
function esconderpubli(){ $(".publisub").slideUp(100,"easeInOutExpo");}
