3)

I really like the Ben Hulse Design website (pictured right). I like that website is mainly image based. The navigation is very simple. The rollovers are very simple and just show a colored line under the word. It is very simple but yet very elegant.
As I was working on my tutorial website, I was originally going to have a list of the different classes that a programming language has in a column to the left of the main content area(see picture to right). This can be very confusing when there are many different classes. This doesn't look that elegant either. I have always liked the simple Facebook chat bar that is always at the bottom of Facebook no matter what page you are on. I thought this could be good on my website because I could easily have the contents of this bar change with what page you are on and this would keep the global navigation the same.$("#sample-bar").jixedbar({
showOnTop: true,
transparent: true,
opacity: 0.5,
slideSpeed: "slow",
roundedCorners: false,
roundedButtons: false,
menuFadeSpeed: "slow",
tooltipFadeSpeed: "fast",
tooltipFadeOpacity: 0.5
});The showOnTop= true will allow the menubar to be on the top like at http://gozips.uakron.edu/~kps7. It is originally on the bottom. I was also able to have the bar be positioned underneath a banner by changing the position in the javascript to relative but this caused the drop down menus to not be positioned correctly.

Being interested in interactivity and interactive sites, I decided to search for some easy, intuitive interactive sites. I came upon this flash site that allows the viewer to morph peoples faces. It has a simple interface of just clicking the eyes, nose, mouth or the head or shoulders to change the image of the corresponding body part. Since there are multiple pictures of body parts that could be selected for the face, it seems like they wouldn't be able to make the different body parts visually fit with all the different faces and body parts without looking poorly done. This is the total opposite. The different shaped and sized eyes, mouths, and noses, although they look funny, fits well together. The mixing of the body parts doesn't look like a bad photoshop job or like frankenstein. There are 759,375 possible faces that could be made. Here are some examples of some faces that could be made.
While researching about web site shopping cart, I was curious how difficult building a shopping cart would be. I would like to try to see if I could implement this one my Interactive Tutorial website but gozips doesn't allow php code to be implemented. I came across this site that gives a very easy tutorial on how to make a php shopping cart.CREATE TABLE books (id int(6) unsigned NOT NULL auto_increment,title varchar(100) NOT NULL default '',author varchar(100) NOT NULL default '',price decimal(3,2) NOT NULL default '0.00',PRIMARY KEY (id)) TYPE=MyISAM;