/*
This code was developed at DirectPerformance (www.directperformance.com.br) and is distributed under the Creative Commons - Attribution-NonCommercial 3.0. More details: http://creativecommons.org/licenses/by-nc/3.0/legalcode
You can freely share, transmit and adapt, but you must attribute the work to the original author information and can not use for commercial purposes.
Original Author: DirectPerformance - Website: www.directperformance.com.br - E-mail: contato@directperformance.com.br
*/

jQuery(document).ready(function(){
	//Pegar o valor do estado e da cidade no OK
	var dpc_estado;
	var dpc_cidade;

	jQuery("input.thickbox").click(function(){
		dpc_estado=jQuery('div.estado select option:selected').text()
		dpc_cidade=jQuery('div.cidade select option:selected').text()
		dpc_pageview(escape("ondeComprar/"+dpc_estado+"/"+dpc_cidade+"/ok"));
	});
	//Coleções
	jQuery('#colecoes ul a').live('mousedown',function(){
		dpc_pageview('colecoes/' + escape(jQuery(this).attr('title')));
	});
	//Navegação pelas fotos
	jQuery('#TB_next').live("mousedown", function(){
		dpc_pageview('fotos/proxima');
	});
	jQuery('#TB_prev').live("mousedown", function(){
		dpc_pageview('fotos/anterior');
	});	
	//Click nas fotos
	jQuery('#fotos a.thickbox img').live('mousedown',function(e){
		dpc_pageview('fotos/'+escape(jQuery(this).attr('src'))+'/click');
	});
	//Paginacao de fotos
	jQuery('#fotos .fotos-base a').live('mousedown',function(){
		dpc_pageview('fotos-pagina/'+escape(jQuery(this).attr('title')));
	});
	//Click downloads
	jQuery('#desfiles .downloads a').live('mousedown',function(){
		dpc_pageview('download/'+jQuery(this).attr('href'));
	});
});//fecha o ready

