$(document).ready(function(){
//Hide the tooglebox when page load
$('#submenu').hide();
//slide up and down when click over heading 2
$('.portfolio').click(function(){
// slide toggle effect set to slow you can set it to fast too.
$(this).next("#submenu").fadeIn('slow');
return true;
});
});
