$(document).ready(function(){

    $("a[rel=lightbox]").lightBox({
		imageLoading:			ROOT_DIR + '/styles/plugins/lightbox/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
		imageBtnPrev:			ROOT_DIR + '/styles/plugins/lightbox/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
		imageBtnNext:			ROOT_DIR + '/styles/plugins/lightbox/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
		imageBtnClose:			ROOT_DIR + '/styles/plugins/lightbox/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
		imageBlank:				ROOT_DIR + '/styles/plugins/lightbox/images/lightbox-blank.gif'			// (string) Path and the name of a blank image (one pixel)
	});
    
    _startThickBox(function(data){
    
        $("#TB_ajaxContent").css({
            width: "auto",
            overflow: "hidden"
        });
        
        var params = {
            allowScriptAccess: "always"
        };
        var atts = {
            id: "playerProduto"
        };
		
        swfobject.embedSWF($("#youtube-player", data).html(), "youtube-player", "425", "356", "8", null, null, params, atts);
        $("a.close").bind("click", function(){
            tb_remove();
            return false;
        });
    });
    
    $("ul#galeria li").bind("mouseover", function(){
        $(this).removeClass("off").addClass("on");
    }).bind("mouseout", function(){
        $(this).removeClass("on").addClass("off");
    });
});
