// JavaScript Document<script type="text/javascript">
var img_width;
var img_height;
var new_width;
var new_height;
var old_width;
var old_height;
var resize_ammount=8;
$('img').mouseenter(function(){
	if($(this).attr("alt")=="rollover"){
	old_width=parseInt($(this).attr("w"));
	old_height=parseInt($(this).attr("h"));
	new_width=old_width+8;
	new_height=old_height+resize_ammount;
	$(this).animate({
	width: new_width,
    height: new_height,
  }, 100);}
});
$('img').mouseout(function(){
	if($(this).attr("alt")=="rollover"){
	$(this).animate({
	width: old_width,
    height: old_height,
  }, 100);}
});
