// JavaScript Document

var obj = null;

//parametros
var swf_height = 231; //height del swf
var swf_widht = 298; //widht del swf
var swf_folder = 'http://www.lawebdeparana.com/comercios/videos/'; //carpeta del swf, example: folder/

function checkHover() {
	if (obj) {
		$('div#preview').fadeOut('fast');	
		$('div#preview').html('');
	} //if
} //checkHover

$(document).ready(function() {
 
   $('div#preview').hide();
   $('div.preview_txt').hide();
   $('div#content').width(swf_widht);
   $('div#preview').width(swf_widht);
	
   $("img.preview").hover(function() {
 
		if (obj) {
			$('div#preview').hide();
			obj = null;
		} //if
   
   		var offset = $(this).offset();
		var left = offset.left + $(this).width() + 5;
		var flv = swf_folder + $(this).attr("name");
		var flashvar = '<param name="FlashVars" value="videos=' + flv + '" />';
		var embed = 'FlashVars="videos=' + flv + '"';
		
		//alert(flv);
		
		//alert($(this).parent().next().html());
		
		$('div#preview').css("left", left);
		$('div#preview').css("top", offset.top + 6);
		
		var html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,28,0" width="' + swf_widht + '" height="' + swf_height + '" ><param name="movie" value="../js/mediaplayer/video.swf" /><param name="quality" value="high" />' + flashvar + '<embed ' + embed + ' src="../js/mediaplayer/video.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + swf_widht +' " height="' + swf_height + '"></embed></object>';
		
		//alert($('div#preview').html);
		
		$('div#preview').html(html);
		//alert(html);
		
   		$('div#preview').fadeIn('fast');
		
   }, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			1500);
	});
   
 });
