/*
 Copyright geek-place.com
*/
// ONLY EDIT THE SELECTIONS WITH A "//" NOTE AFTER IT

var peelit = new Object();
// ---------------------------------------------------------  MODIFY TARGET URL
peelit.ad_url = escape(''); // Link Address when ad is clicked on
// ---------------------------------------------------------  END TARGET URL

peelit.small_path = 'small.swf'; // Path where you placed the small.swf
peelit.small_image = escape('images/small.jpg'); // Small Image before hover (.jpg, .gif, .png, .swf) - 75X75
peelit.small_width = '100';
peelit.small_height = '100';
peelit.small_params = 'ico=' + peelit.small_image;

peelit.big_path = 'big.swf'; // Path where you placed the big.swf
peelit.big_image = escape('images/big.jpg'); // Large Image after hover (.jpg, .gif, .png, .swf) - 500X500
peelit.big_width = '650';
peelit.big_height = '650';
peelit.big_params = 'big=' + peelit.big_image + '&ad_url=' + peelit.ad_url;

function sizeup987(){
	document.getElementById('peelitBig').style.top = '0px';
	document.getElementById('peelitSmall').style.top = '-1000px';
}

function sizedown987(){
	document.getElementById("peelitSmall").style.top = "0px";
	document.getElementById("peelitBig").style.top = "-1000px";
}

peelit.putObjects = function () {
// <peelitSmall>
document.write('<div id="peelitSmall" style="position:absolute;width:'+ peelit.small_width +'px;height:'+ peelit.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="peelitSmallObject" width="'+peelit.small_width+'" height="'+peelit.small_height+'">');
// object params
document.write(' <param name="allowScriptAccess" value="always"/> ');
document.write(' <param name="movie" value="'+ peelit.small_path +'?'+ peelit.small_params +'"/>');
document.write(' <param name="wmode" value="transparent" />');
document.write(' <param name="quality" value="high" /> ');
document.write(' <param name="FlashVars" value="'+peelit.small_params+'"/>');
// embed
document.write('<embed src="'+ peelit.small_path + '?' + peelit.small_params +'" name="peelitSmallObject" wmode="transparent" quality="high" width="'+ peelit.small_width +'" height="'+ peelit.small_height +'" flashvars="'+ peelit.small_params +'" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object></div>');
document.write('</script>');
// </peelitSmall>
// <peelitBig>
document.write('<div id="peelitBig" style="position:absolute;width:'+ peelit.big_width +'px;height:'+ peelit.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="peelitBigObject" width="'+ peelit.big_width +'" height="'+ peelit.big_height +'">');
// object params
document.write(' <param name="allowScriptAccess" value="always"/> ');
document.write(' <param name="movie" value="'+ peelit.big_path +'?'+ peelit.big_params +'"/>');
document.write(' <param name="wmode" value="transparent"/>');
document.write(' <param name="quality" value="high" /> ');
document.write(' <param name="FlashVars" value="'+ peelit.big_params +'"/>');
// embed
document.write('<embed src="'+ peelit.big_path + '?' + peelit.big_params +'" id="peelitBigEmbed" name="peelitBigObject" wmode="transparent" quality="high" width="'+ peelit.big_width +'" height="'+ peelit.big_height +'" flashvars="'+ peelit.big_params +'" swliveconnect="true" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object></div>');
// </peelitBig>
setTimeout('document.getElementById("peelitBig").style.top = "-1000px";',1000);
}
peelit.putObjects();