// JavaScript Document

jQuery(document).ready(function(){
$(".menu > ul > li").hover(
function(){
if($(this).hasClass("current")) {}
else {
$(this).find("ul").animate({opacity: "show"}, "fast");
}
if($(this).hasClass("current")) {}
else {
$(this).find("img.rollover").animate({opacity: "show"}, "fast");
}
$(this).find("ul").animate({opacity: "show"}, "fast");
if ($(this).is('#about')){
$(this).find("ul").animate({ height: "80px" }, {queue:false, duration:"normal"});
}
if ($(this).is('#portfolio')) {
$(this).find("ul").animate({ height: "20px" }, {queue:false, duration:"normal"});
}
if ($(this).is('#services')) {
$(this).find("ul").animate({ height: "100px" }, {queue:false, duration:"normal"});
}
if ($(this).is('#contact')) {
$(this).find("ul").animate({ height: "40px" }, {queue:false, duration:"normal"});
}
},
function(){
if($(this).hasClass("current")) {}
else {
$(this).find("img.rollover").animate({opacity: "hide"}, "fast");
}
$(this).find("ul").animate({ height: "0" }, { duration:"normal"});
$(this).find("ul").animate({opacity: "hide"}, "fast");
});
});
