$(document).ready(function(){  

// This is for the portfolio opacity

//$("div.normal").hover(function() { //When trigger is hovered...
//$(this).parent().css({'border' : 'none'});
//$(this).fadeOut("fast", function () { $(this).parent().find("div.popup").fadeIn("fast"); });
//},{});

$("div.normal").mouseover(function(){ //When mouse over ...  
$(this).parent().find('div.popup').stop().animate({height: '160px', opacity:'1'},{queue:false, duration:1000, easing: 'jswing'})  
});  

$("div.normal").mouseout(function(){ //When mouse over ...  
$(this).parent().find('div.popup').stop().animate({height: '0px', opacity:'0'},{queue:false, duration:500, easing: 'jswing'})  
});  



// This is for showing/hiding divs by clicking

$("div.expand").click(function() { // When trigger is clicked... 
    var divId = $(this).attr('id');
    if ($(this).css('max-width') === '300px') { $(this).css({'max-width' : '100%'}); }
    else {$(this).css({'max-width' : '300px'}); }
    $(this).children('.clickdown').toggle("slow");
    return false;
}); 



});