/* curvycorners_fwd.js */

$(document).ready(function(){
	var imageCode = "666_10"; //naming convention to change all images in one place
	var curvyHtml = "<img src='http://fisherwebdev.com/images/curve_top_left_" + imageCode + ".gif' alt='' style='position:absolute; top:0; left:0;' />";
	curvyHtml += "<img src='http://fisherwebdev.com/images/curve_top_right_" + imageCode + ".gif' alt='' style='position:absolute; top:0; right:0;' />";
	curvyHtml += "<img src='http://fisherwebdev.com/images/curve_bottom_right_" + imageCode + ".gif' alt='' style='position:absolute; bottom:0; right:0;' />";
	curvyHtml += "<img src='http://fisherwebdev.com/images/curve_bottom_left_" + imageCode + ".gif' alt='' style='position:absolute; bottom:0; left:0;' />";
	$('.curvycorners').append(curvyHtml);
});