$( function() {
	$("div.styletest").add("div.stylecontest").add("div.stylebrowse").bind("mouseenter", function() { 
		$(this).animate(
			{'width' : parseInt($(this).css('width')) + 20, 'left' : parseInt($(this).css('left')) - 10},
			80, 
			"swing", 
			function () {
				$(this).animate(
					{'width' : parseInt($(this).css('width')) - 36, 'left' : parseInt($(this).css('left')) + 18},
					80, 
					"swing",
					function () {
							$(this).animate(
								{'width' : parseInt($(this).css('width')) + 18, 'left' : parseInt($(this).css('left')) - 9},
								80, 
								"swing",
								function () {
										$(this).animate(
											{'width' : parseInt($(this).css('width')) - 2, 'left' : parseInt($(this).css('left')) + 1},
											80, 
											"swing"
										);			
									}
								)			
						}
					)			
			}
		); 
	});
});
