Hey guys, I'm trying to create a menu that onclick will change the content of a div to some file content, change the current menu selection and the div height. What I currently have is this : <li id='active'><a href="<?php echo "javascript:ajaxpage('./" . $lang ."/home.php', 'pageContent');"; ?>">Link</a></li> <li id='item'><a href="<?php echo "javascript:ajaxpage('./" . $lang ."/about.php', 'pageContent');"; ?>">Link</a></li> Code (markup): This will just do the first thing - change the content of the div. How can I apply the height change and li css effects? Thanks!