// ONLY EDIT THE SELECTIONS WITH A "//" NOTE AFTER IT

var peelme = new Object();

peelme.ad_url = escape('http://caehiew.com'); // Link Address when ad is clicked on

peelme.small_path = './images/custom_images/peel_small.swf'; // Path where you placed the small.swf
peelme.small_image = escape('./images/custom_images/peel_small.jpg'); // Small Image before hover (.jpg, .gif, .png, .swf) - 75X75
peelme.small_width = '100';
peelme.small_height = '100';
peelme.small_params = 'ico=' + peelme.small_image;

peelme.big_path = './images/custom_images/peel_big.swf'; // Path where you placed the big.swf
peelme.big_image = escape('./images/custom_images/peel_big.gif'); // Large Image after hover (.jpg, .gif, .png, .swf) - 500X500
peelme.big_width = '650';
peelme.big_height = '650';
peelme.big_params = 'big=' + peelme.big_image + '&ad_url=' + peelme.ad_url;

function sizeup987(){
	document.getElementById('peelmeBig').style.top = '0px';
	document.getElementById('peelmeSmall').style.top = '-1000px';
}

function sizedown987(){
	document.getElementById("peelmeSmall").style.top = "0px";
	document.getElementById("peelmeBig").style.top = "-1000px";
}

peelme.putObjects = function () {
// <peelmeSmall>
document.write('<div id="peelmeSmall" style="position:absolute;width:'+ peelme.small_width +'px;height:'+ peelme.small_height +'px;z-index:9999;right:0px;top:0px;">');
// object
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
document.write(' id="peelmeSmallObject" width="'+peelme.small_width+'" height="'+peelme.small_height+'">');
// object params
document.write(' <param name="allowScriptAccess" value="always"/> ');
document.write(' <param name="movie" value="'+ peelme.small_path +'?'+ peelme.small_params +'"/>');
document.write(' <param name="wmode" value="transparent" />');
document.write(' <param name="quality" value="high" /> ');
document.write(' <param name="FlashVars" value="'+peelme.small_params+'"/>');
// embed
document.write('<embed src="'+ peelme.small_path + '?' + peelme.small_params +'" name="peelmeSmallObject" wmode="transparent" quality="high" width="'+ peelme.small_width +'" height="'+ peelme.small_height +'" flashvars="'+ peelme.small_params +'" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object></div>');
document.write('</script>');
// </peelmeSmall>
// <peelmeBig>
document.write('<div id="peelmeBig" style="position:absolute;width:'+ peelme.big_width +'px;height:'+ peelme.big_height +'px;z-index:9999;right:0px;top:0px;">');
// object
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
document.write(' id="peelmeBigObject" width="'+ peelme.big_width +'" height="'+ peelme.big_height +'">');
// object params
document.write(' <param name="allowScriptAccess" value="always"/> ');
document.write(' <param name="movie" value="'+ peelme.big_path +'?'+ peelme.big_params +'"/>');
document.write(' <param name="wmode" value="transparent"/>');
document.write(' <param name="quality" value="high" /> ');
document.write(' <param name="FlashVars" value="'+ peelme.big_params +'"/>');
// embed
document.write('<embed src="'+ peelme.big_path + '?' + peelme.big_params +'" id="peelmeBigEmbed" name="peelmeBigObject" wmode="transparent" quality="high" width="'+ peelme.big_width +'" height="'+ peelme.big_height +'" flashvars="'+ peelme.big_params +'" swliveconnect="true" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object></div>');
// </peelmeBig>
setTimeout('document.getElementById("peelmeBig").style.top = "-1000px";',1000);
}
peelme.putObjects();
