$('window').ready( function (){

	$('#oContenedorSWF2').hide();
	SWFAddress.addEventListener( SWFAddressEvent.CHANGE, changeListener);
	
})


function changeListener(){
	if ( SWFAddress.getValue() == '/productos-leche-celta')
		$('#oContenedorSWF2').show();
	else
		$('#oContenedorSWF2').hide();
}
