//SWF...
var flashvars = {};
var params = {};
params.wmode = "transparent";

var attributes = {};
swfobject.embedSWF("http://www.ceramicaqueiroz.com.br/_conteudo/_temas/ceramica/home_4.swf", "topo", "100%", "517", "8.0.0", "", flashvars, params, attributes);

//cufon
Cufon.replace('#navbar li a', {font: 'Folks Light'});
Cufon.replace('#conteudo h4', {font: 'Folks Light'});

//jCarousel
function mycarousel_initCallback(carousel) {
	jQuery('.jcarousel-control a').bind('click', function() {
		carousel.scroll(jQuery.jcarousel.intval(jQuery(this).attr('id')));

		$(this).hover(function() {
			carousel.stopAuto();			
		}, 
		function() {
			carousel.startAuto();
		});				
		
		return false;
	});			
};


//jquery
$(function () 
{			
	//colorbox
	$(".iframe").colorbox({transition: "fade", width:"980px", height:"650", iframe:true});
	$(".light-prods").colorbox();


	$('#zoom').jcarousel(
	{
		scroll: 1,
		initCallback: mycarousel_initCallback
	});		
	
	$("tr:nth-child(odd)").addClass("zebra");
	$('tr').hover(function () 
		{ 
		$(this).addClass('hover');
		}
	,
	function () 
	{
		$(this).removeClass('hover');		
	}
	);
	
	//validação
	$("#frm").validationEngine();
	
	//external
	$('#conteudo').find('a[rel="external"]').click(function () 
		{
			$(this).attr('target', '_blank');
		}
	);		
});

